pandas df.plot使条形的宽度改变

时间:2019-11-27 08:34:56

标签: pandas plot width

我正在使用熊猫df.plot绘制条形图,条的宽度不相同。 如果指定width参数,它也不相同。

我的df有19行(字母从A到S)和6列(数字从1到6)。我创建了一个群集条形图,每个字母6条。

这是我的代码:

plt.figure()

plot_df.plot(x="Alpha", y=["1", "2", "3","4","5","6"], kind="bar").legend(prop={'size': 7})

plt.ylabel("F1 score")

plt.tight_layout()

what I get is bars with different widths (see the brown or blue bars for instance) enter image description here

我不知道为什么会这样,或者我能改变什么。 谢谢!

0 个答案:

没有答案