Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Axes contiene la mayoría de los elementos de la figura: Axis, Tick, Line2D, Text, Polygon, etc., y establece el sistema de coordenadas. Y las instancias de Axes admiten devoluciones de llamada a través de un atributo de devoluciones de llamada.
Función matplotlib.axes.Axes.twinx()
La función Axes.twinx() en el módulo de ejes de la biblioteca matplotlib se usa para crear ejes gemelos que comparten el eje x.
Sintaxis: Axes.twinx(self)
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: Este método se utiliza para devolver lo siguiente.
- ax_twin : Esto devuelve la instancia de Axes recién creada.
Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.twinx() en matplotlib.axes:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np def GFG1(temp): return (5. / 9.) * (temp - 32) def GFG2(ax1): y1, y2 = ax1.get_ylim() ax_twin .set_ylim(GFG1(y1), GFG1(y2)) ax_twin .figure.canvas.draw() fig, ax1 = plt.subplots() ax_twin = ax1.twinx() ax1.callbacks.connect("ylim_changed", GFG2) ax1.plot(np.linspace(-40, 120, 100)) ax1.set_xlim(0, 100) ax1.set_ylabel('Fahrenheit') ax_twin .set_ylabel('Celsius') fig.suptitle('matplotlib.axes.Axes.twinx()\ function Example\n\n', fontweight ="bold") plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt # Create some mock data t = np.arange(0.01, 10.0, 0.001) data1 = np.exp(t) data2 = np.sin(0.4 * np.pi * t) fig, ax1 = plt.subplots() color = 'tab:blue' ax1.set_xlabel('time (s)') ax1.set_ylabel('exp', color = color) ax1.plot(t, data1, color = color) ax1.tick_params(axis ='y', labelcolor = color) ax2 = ax1.twinx() color = 'tab:green' ax2.set_ylabel('sin', color = color) ax2.plot(t, data2, color = color) ax2.tick_params(axis ='y', labelcolor = color) fig.suptitle('matplotlib.axes.Axes.twinx() \ function Example\n\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