matplotlib.pyplot.xlim #
- matplotlib.pyplot. xlim ( * args , ** kwargs ) [fonte] #
Ottenere o impostare i limiti x degli assi correnti.
Firme di chiamata:
left, right = xlim() # return the current xlim xlim((left, right)) # set the xlim to left, right xlim(left, right) # set the xlim to left, right
Se non specifichi args, puoi passare left o right come kwargs, cioè:
xlim(right=3) # adjust the right leaving left unchanged xlim(left=1) # adjust the left leaving right unchanged
L'impostazione dei limiti disattiva la scalabilità automatica per l'asse x.
- Resi :
- sinistra destra
Una tupla dei nuovi limiti dell'asse x.
Appunti
Chiamare questa funzione senza argomenti (ad esempio
xlim()
) è l'equivalente pyplot della chiamataget_xlim
sugli assi correnti. Chiamare questa funzione con argomenti è l'equivalente pyplot della chiamataset_xlim
sugli assi correnti. Tutti gli argomenti vengono comunque passati.
Esempi che utilizzano matplotlib.pyplot.xlim
#
Asse condiviso
Linee infinite
Testo Pyplot
Afferrare il fotogramma
Funzioni interattive