Created
June 1, 2018 09:48
-
-
Save FelixChop/4bfd08b9c3d6a6d852c23be2f5ef1de0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| df = X_test.copy() | |
| df['predictions'] = rf_model.predict_proba(X_test) | |
| data_to_analyze = df.sort_values('predictions', ascending=False).head(10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment