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_majorticklocs()
La función Axis.get_majorticklocs() en el módulo de eje de la biblioteca matplotlib se usa para obtener la array de ubicaciones de marca principales en coordenadas de datos.
Sintaxis: Axis.get_majorticklocs(self)
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la array de las principales ubicaciones de ticks en coordenadas de datos.
Los siguientes ejemplos ilustran la función matplotlib.axis.Axis.get_majorticklocs() en matplotlib.axis:
Ejemplo 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis from matplotlib.artist import Artist from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig, ax = plt.subplots() def tellme(s): ax.set_title(s, fontsize = 16) fig.canvas.draw() renderer = fig.canvas.renderer Artist.draw(ax, renderer) tellme("Matplotlib.axis.Axis.get_majorticklocs()\n\ Function Example") ax.grid() print("Value of get_majorticklocs() :") for i in ax.xaxis.get_majorticklocs(): print(i) plt.show()
Producción:
Value of get_majorticklocs() : 0.0 0.2 0.4 0.6000000000000001 0.8 1.0
Ejemplo 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Axis from matplotlib.artist import Artist from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection ='3d') X, Y, Z = axes3d.get_test_data(0.1) ax.plot_wireframe(X, Y, Z, rstride = 5, cstride = 5) ax.view_init(30, 50) fig.canvas.draw() renderer = fig.canvas.renderer Artist.draw(ax, renderer) fig.suptitle('Matplotlib.axis.Axis.get_majorticklocs()\n\ Function Example') ax.grid() print("Value of get_majorticklocs() :") for i in ax.xaxis.get_majorticklocs(): print(i) plt.show()
Producción:
Value of get_majorticklocs() : -40.0 -30.0 -20.0 -10.0 0.0 10.0 20.0 30.0 40.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