matplotlib.pyplot.ylim #
- matplotlib.pyplot. ylim ( * args , ** kwargs ) [Quelle] #
Holen oder setzen Sie die y-Grenzen der aktuellen Achsen.
Rufsignaturen:
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
Wenn Sie args nicht angeben, können Sie alternativ bottom oder top als kwargs übergeben, dh:
ylim(top=3) # adjust the top leaving bottom unchanged ylim(bottom=1) # adjust the bottom leaving top unchanged
Durch das Festlegen von Grenzwerten wird die automatische Skalierung für die Y-Achse deaktiviert.
- Rückgaben :
- unten oben
Ein Tupel der neuen Grenzwerte für die y-Achse.
Anmerkungen
Der Aufruf dieser Funktion ohne Argumente (z. B.
ylim()
) ist das Pyplot-Äquivalent zum Aufrufget_ylim
der aktuellen Achsen. Das Aufrufen dieser Funktion mit Argumenten ist das Pyplot-Äquivalent zum Aufrufenset_ylim
der aktuellen Achsen. Alle Argumente werden jedoch übergeben.
Beispiele mit matplotlib.pyplot.ylim
#
Unendliche Linien
Pyplot-Text
Framegrabbing
Interaktive Funktionen
Findobj-Demo
Pyplot-Tutorial