matplotlib 为什么未出现维度不同的问题
from matplotlib import pyplot as pltx = 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:} x坐标,即range 有12个元素,y坐标有13个,x少一个。
页:
[1]