#two approach can help df['col'].value_counts().sort_index().plot.bar() df['col'].value_counts(sort = True)
df['col'].value_counts().sort_index().plot.bar()
df['col'].value_counts(sort = False).plot.bar(title='My Title')