冷回清风暖 发表于 2021-1-19 16:33:15

matplotlib 为什么未出现维度不同的问题

from matplotlib import pyplot as plt

x = range(2, 26, 2)
y =


plt.plot(x, y)
plt.show()



报的错误是这样的
ValueError: x and y must have same first dimension, but have shapes (1, 12) and (13,)

是代码有什么问题吗{:5_104:}

suchocolate 发表于 2021-1-19 18:16:28

x坐标,即range 有12个元素,y坐标有13个,x少一个。
页: [1]
查看完整版本: matplotlib 为什么未出现维度不同的问题