Simple question here, I am creating a pie chart in pandas for the value counts of a dataset's regional spread:
df['region'].value_counts().plot.pie
I want to use the colormap "cool" to color this so it matches my other visualizations, is this possible or am I oversimplifying? Do I need to assign a color to each region or can I somehow just add a colormap='cool' somewhere in here? New to visualizations here...
