标签: python matplotlib plot seaborn
我的图以纯色表示。我想以多种颜色显示它,如图所示。为什么会这样?
df['activity'].value_counts().plot(kind='bar', title='Training Examples by Activity Type') plt.show() df['user-id'].value_counts().plot(kind='bar',title='Training Examples by user') plt.show()
我的结果
我想要这个