更改条形图以匹配我在颜色变量中设置的特定颜色

时间:2018-01-25 21:14:35

标签: python pandas matplotlib bar-chart seaborn

我想在图表和饼图中绘制男性和女性用户的数量。我希望颜色匹配。您会注意到饼图中的女性是珊瑚,而男性是浅蓝色。它不会在条形图中以这种方式显示。这是代码:

colors = ["lightskyblue", "lightcoral"]

f,ax=plt.subplots(1,2,figsize=(18,8))
df1['sex'].value_counts().plot.pie(explode=[0,0.1],autopct='%1.1f%%',ax=ax[0],colors=colors,shadow=True)
df1['sex'].value_counts().plot(kind='bar', ax=ax[1],color=colors)

0 个答案:

没有答案