I it possible to have different colors on my barplot straight from pandas plot without specifying them. Here is what I am referring about: I have this dataframe:
df
Personnage Puissance
J. Wick 82
J. Bond 72
J. Bourne 85
J. Rambo 91
J. McLane 83
When I use df.plot(kind='bar')
all my bars are blue.I would like to use an argument to get the different colors without manually specifying them.