Created
April 9, 2019 17:07
-
-
Save dipanjanS/13a20d05049b92d6e7296e182ba4cd7d 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
log_freq_pd_df = (log_freq_df | |
.toPandas() | |
.sort_values(by=['log(count)'], | |
ascending=False)) | |
sns.catplot(x='status', y='log(count)', data=log_freq_pd_df, | |
kind='bar', order=status_freq_pd_df['status']) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment