Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Es una biblioteca de visualización increíble en Python para gráficos 2D de arrays y se utiliza para trabajar con la pila SciPy más amplia.
Matplotlib.axis.Axis.zoom() Función
La función Axis.zoom() en el módulo de eje de la biblioteca matplotlib se usa para acercar o alejar el eje.
Sintaxis: Axis.zoom(self, dirección)
Parámetros: este método acepta los siguientes parámetros.
- dirección: Este parámetro es el valor para acercar (dirección > 0) o alejar (dirección <= 0).
Valor devuelto : este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.axis.Axis.zoom() en matplotlib.axis:
Ejemplo 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots() ax.plot([1, 2, 3]) ax.xaxis.zoom(3) ax.grid() fig.suptitle("""matplotlib.axis.Axis.zoom() function Example\n""", fontweight ="bold") plt.show()
Producción:
Ejemplo 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import numpy as np import matplotlib.pyplot as plt from matplotlib.widgets import Slider, Button, RadioButtons fig, ax1 = plt.subplots() plt.subplots_adjust(bottom = 0.25) t = np.arange(0.0, 1.0, 0.001) a0 = 5 f0 = 3 delta_f = 5.0 s = a0 * np.sin(2 * np.pi * f0 * t) ax1.plot(t, s, lw = 2, color = 'green') ax1.xaxis.zoom(-2) ax1.grid() fig.suptitle("""matplotlib.axis.Axis.zoom() function Example\n""", fontweight ="bold") 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