为什么 matplotlib.pyplot.xlim() 方法在下面的例子中不起作用?
import matplotlib.pyplot as plt
l = [0,0.2,0.4,0.6,0.8,1.0]
plt.plot(l,l)
plt.xlim = (-10,10)
plt.show()
最佳答案
matplotlib.pyplot.xlim
, matplotlib.pyplot.ylim
是函数。您应该调用它们而不是分配给它们:
plt.ylim(-10,10)
plt.xlim(-10,10)
关于python - 如何在 python matplotlib 中设置限制范围 (xlim)?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42749014/