Trier Value_Counts Sortie
#two approach can help
df['col'].value_counts().sort_index().plot.bar()
df['col'].value_counts(sort = True)
Misty Mantis
#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')