如何在matplot中使用字符串?

时间:2017-10-29 19:40:50

标签: python matplotlib

months = ['August', 'September', 'October', 'November', 'December']
values = [0, 1000, 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000]

plt.plot(values, months)
plt.xlabel("Fall 2017 Semester Months")
plt.show()

Value error: Could not convert strings to float

我的目标是根据整个学期的购买情况,使用积极的学习来绘制学校预算。如何将字符串用作x轴的变量?

0 个答案:

没有答案