我想定义python中绘图中出现的x值范围。例如,这是我的代码:
import matplotlib.pyplot as plt
plt.figure(13)
ax1=plt.subplot(111)
x=[i for i in range(100)]
y=[i**2 for i in x]
ax1.plot(x,y)
但是,我想在图表中看到x的范围从0到60和80到100.如何,我可以在matplot中完成。实际,问题更复杂,只是删除数据似乎不是一个好的解决方案。我想改变情节。
我试过了ax1.set_xlim([0,60]),但也想从80到100看。