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