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轴的变量?