Matplotlib.pyplot.ylim() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB.

función matplotlib.pyplot.ylim()

La función ylim() en el módulo pyplot de la biblioteca matplotlib se usa para obtener o establecer los límites y de los ejes actuales.

Sintaxis: matplotlib.pyplot.ylim(*args, **kwargs)

Parámetros: Este método acepta los siguientes parámetros que se describen a continuación:

  • bottom: este parámetro se usa para establecer el ylim en el fondo.
  • top: este parámetro se utiliza para establecer el ylim en la parte superior.
  • **kwargs: este parámetro es Propiedades de texto que se utilizan para controlar la apariencia de las etiquetas.

Devoluciones: Esto devuelve lo siguiente:

  • bottom, top : Esto devuelve la tupla de los nuevos límites del eje y.

Los siguientes ejemplos ilustran la función matplotlib.pyplot.ylim() en matplotlib.pyplot:

Ejemplo 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
ax = plt.subplot(111)
  
t = np.arange(0.0, 5.0, 0.01)
s = np.cos(2 * np.pi * t)
line, = plt.plot(t, s, lw = 2)
  
plt.annotate('local max', xy =(2, 1),
             xytext =(3, 1.5),
             arrowprops = dict(facecolor ='black',
                               shrink = 0.05), )
  
plt.ylim(-2, 2)
plt.title(" matplotlib.pyplot.ylim() Example")
plt.show()

Producción:

Ejemplo #2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
  
np.random.seed(9680801)
  
mu, sigma = 50, 13
x = mu + sigma * np.random.randn(10000)
  
# the histogram of the data
n, bins, patches = plt.hist(x, 50, 
                            density = True,
                            facecolor ='g',
                            alpha = 0.75)
  
  
plt.xlabel('No of Users in K')
plt.title('Histogram of IQ')
plt.text(50, .035, r'$\mu = 50,\
\ \sigma = 13$')
  
plt.xlim(-10, 110)
plt.ylim(0, 0.04)
  
plt.grid(True)
plt.title(" matplotlib.pyplot.ylim() Example")
  
plt.show()

Producción:

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *