sort value_counts output

24

df['col'].value_counts().sort_index().plot.bar()
df['col'].value_counts(sort = False).plot.bar(title='My Title')

Comments

Submit
0 Comments