使用 matplotlib.figure 更改刻度间隔
Change tick interval with matplotlib.figure
有没有办法改变 x 值的区间?它们现在非常拥挤,我不需要向所有人展示,我可能只需要每 20 个展示 1 个。
Pic of the graph
def create_window_graph(xas,yas,labname):
fig = Figure(figsize=(8, 4), dpi=80)
fig.add_subplot(111).plot(xas,yas, 'r--', label = labname)
fig.legend()
使用 maptplotlib.pyplot 非常简单:
ax.set_xlim(xmin = , xmax = )
您可以在此处查看完整文档:
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.axes.Axes.set_xlim.html
有没有办法改变 x 值的区间?它们现在非常拥挤,我不需要向所有人展示,我可能只需要每 20 个展示 1 个。
Pic of the graph
def create_window_graph(xas,yas,labname):
fig = Figure(figsize=(8, 4), dpi=80)
fig.add_subplot(111).plot(xas,yas, 'r--', label = labname)
fig.legend()
使用 maptplotlib.pyplot 非常简单:
ax.set_xlim(xmin = , xmax = )
您可以在此处查看完整文档:
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.axes.Axes.set_xlim.html