Created
November 27, 2021 15:00
-
-
Save lucasastorian/fd1e989277ebab53c13f8db898406d19 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
| plt.figure(figsize=(10, feature_importance.shape[0] / 5)) | |
| feature_importance.sort_values('mean', ascending=True, inplace=True) | |
| feature_importance['mean'].plot(kind='barh', color='b', alpha=0.25, xerr=feature_importance['std'], error_kw={'ecolor': 'r'}, label="Neg. Log Loss Importance") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment