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.get_data_ratio()
La función Axes.get_data_ratio() en el módulo de ejes de la biblioteca matplotlib se usa para obtener la relación de aspecto de los datos sin procesar.
Sintaxis: Axes.get_data_ratio(self)
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método devuelve la relación de aspecto de los datos sin procesar.
Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.get_data_ratio() en matplotlib.axes:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np fig, ax1 = plt.subplots() x = np.random.randn(20, 50) x[12, :] = 0. x[:, 22] = 0. ax1.spy(x) ax1.set_title("Value Return by get_data_ratio : " +str(ax1.get_data_ratio())+"\n") fig.suptitle('matplotlib.axes.Axes.get_data_ratio() \ Example') plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np fig, [(ax1, ax2), (ax3, ax4)] = plt.subplots(2, 2) x = np.random.randn(20, 50) x[5, :] = 0. x[:, 12] = 0. ax1.spy(x, markersize = 4) ax2.spy(x, precision = 0.2, markersize = 4) ax3.spy(x) ax4.spy(x, precision = 0.4) ax1.set_title("Value Return by get_data_ratio : " +str(ax1.get_data_ratio())+"\n") ax2.set_title("Value Return by get_data_ratio : " +str(ax2.get_data_ratio())+"\n") ax3.set_title("Value Return by get_data_ratio : " +str(ax3.get_data_ratio())+"\n") ax4.set_title("Value Return by get_data_ratio : " +str(ax4.get_data_ratio())+"\n") fig.suptitle('matplotlib.axes.Axes.get_data_ratio\ 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