matplotlib.pyplot.ylim #

matplotlib.pyplot. ylim ( *引数, ** kwargs ) [ソース] #

現在の軸の y 制限を取得または設定します。

呼び出し署名:

bottom, top = ylim()  # return the current ylim
ylim((bottom, top))   # set the ylim to bottom, top
ylim(bottom, top)     # set the ylim to bottom, top

args を指定しない場合は、代わりに、bottomまたは topを kwargs として渡すことができます。

ylim(top=3)  # adjust the top leaving bottom unchanged
ylim(bottom=1)  # adjust the bottom leaving top unchanged

制限を設定すると、y 軸の自動スケーリングがオフになります。

戻り値:
下、上

新しい y 軸の範囲のタプル。

ノート

引数なしでこの関数を呼び出す (例: ) ことは、現在の軸ylim()で呼び出すことと同等の pyplot です。get_ylim引数を指定してこの関数を呼び出すこと set_ylimは、現在の軸で呼び出すことと同等の pyplot です。ただし、すべての引数が渡されます。

#を使用した例matplotlib.pyplot.ylim

無限の行

無限の行

無限の行
パイプロット テキスト

パイプロット テキスト

パイプロット テキスト
フレームグラビング

フレームグラビング

フレームグラビング
インタラクティブ機能

インタラクティブ機能

インタラクティブ機能
Findobj デモ

Findobj デモ

Findobj デモ
パイプロット チュートリアル

パイプロット チュートリアル

パイプロット チュートリアル