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.
función matplotlib.axis.Axis.get_minpos()
La función Axis.get_minpos() en el módulo de eje de la biblioteca matplotlib se usa para obtener los minpos.
Sintaxis: Axis.get_minpos(self)
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve los minpos.
Los siguientes ejemplos ilustran la función matplotlib.axis.Axis.get_minpos() en matplotlib.axis:
Ejemplo 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import matplotlib.pyplot as plt import numpy as np X = np.arange(-5, 5, 1) Y = np.arange(-5, 5, 1) U, V = np.meshgrid(X, Y) fig, ax = plt.subplots() ax.quiver(X, Y, U, V) w = ax.xaxis.get_minpos() print("Value Return :\n"+str(w)) fig.suptitle("""matplotlib.axis.Axis.get_minpos() function Example\n""", fontweight ="bold") plt.show()
Producción:
Value Return : 4.0
Ejemplo 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis import numpy as np import matplotlib.pyplot as plt fig, ax2 = plt.subplots(sharex = True) fig.subplots_adjust(left=0.2, wspace=0.6) box = dict(facecolor='green', pad=5, alpha=0.2) ax2.plot(20*np.random.rand(10)) ax2.set_xlabel('X - Label', bbox=box) ax2.set_xlim(0, 10) Axis.set_label_coords(ax2.xaxis, 0.5, 0.95) w = ax2.xaxis.get_minpos() print("Value Return :\n"+str(w)) fig.suptitle("""matplotlib.axis.Axis.get_minpos() function Example\n""", fontweight ="bold") plt.show()
Producción:
Value Return : 1.0
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA