12

matplotlib と iPython を使用して、(次々に) 表示しようとしているプロットがたくさんあります。0 ~ 1 の値のみを含むプロットもあれば、数百万の値を含むプロットもあります。

以下を使用して y 軸の範囲を設定した後:

ylim((.7,1))

これをリセットして、制限を自動的に設定できるようにしたい(以前と同じように)。正しいアプローチを見つけるのに苦労しています。

4

1 に答える 1

19
ax = plt.gca()  # get the current axes
ax.relim()      # make sure all the data fits
ax.autoscale()  # auto-scale
# only needed mpl < 1.5
# ax.figure.canvas.draw_idle()       # re-draw the figure
于 2013-09-13T21:20:30.023 に答える