定义了stepsize的Python自动缩放

时间:2018-09-26 14:38:27

标签: python matplotlib

是否可以通过定义了stepsize的自动缩放来绘制轴?

plt.autoscale(enable=True, axis='y', step = 0.5)

以上操作无效。

我有以下硬编码,但并不理想。用于不同的数据输入。

ymin = -2
ymax = 1.5
plt.ylim(ymin, ymax)
plt.yticks(np.arange(ymin, ymax, step = 0.5))

预先感谢

0 个答案:

没有答案