Matplotlib中的字符串xticks重叠和TypeError

时间:2018-11-21 13:21:39

标签: python matplotlib typeerror

我正在尝试创建一个具有完整数据框列的图作为x标记。但是,所有xtick都重叠并且没有旋转,我收到TypeError(见图)。

plot = results_df.plot(x='CPV Description', y=['Coefficient', 'Std Error'], figsize=(20,5), grid=False)
plot.set_ylabel('Coefficient/Std Error')
plot.set_xticklabels(results_df['CPV Description'])
plt.xticks(results_df['CPV Description'],rotation=90)

enter image description here

有人知道如何解决此问题吗?

0 个答案:

没有答案