Reputation: 169
I want to display the below data on seaborn bar chart and only the grouped data is available.
I just want to reproduce the same result via seaborn.
Upvotes: 0
Views: 26
Reputation: 150805
barplot
:
sns.barplot(y=df.index, x=df['vote_count'], orient='h')
Output:
Upvotes: 1