我有这样的密谋代码:
def plotMaker(self):
self.d_time ...
self.d_altitude ...
self.min = 0
self.max = 2198
fig = plt.figure()
plt.plot(self.d_time, self.d_altitude)
plt.xlabel('time (s)')
plt.ylabel('height')
plt.title('Title')
plt.grid(True)
plt.savefig("high.png")
return fig
d_time的第一个值是0,最后一个是2198
(取决于值self.min
和self.max
)。所以这是我的数据范围
但我的情节看起来像这样:
并且绘图的最大值为2500.由于绘图步骤500,有一些空白空间没有值。是否可以将此绘图的范围更改为self.min
和self.max
或者可能更改步骤?