Last active
April 9, 2019 17:01
-
-
Save dipanjanS/9c05a6087e51a04e5afbb42be9e97f4c 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
import matplotlib.pyplot as plt | |
import seaborn as sns | |
import numpy as np | |
%matplotlib inline | |
sns.catplot(x='status', y='count', data=status_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