matplotlib.pyplot.minorticks_off() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB.

función matplotlib.pyplot.minorticks_off():

La función minorticks_off() en el módulo pyplot de la biblioteca matplotlib se usa para eliminar marcas menores de los ejes.

Sintaxis: matplotlib.pyplot.minorticks_off()
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: Este método no devuelve ningún valor.

Nota: Esta función mostrará cualquier cambio o efecto si se usa después de usar la función minorticks_on().

Los siguientes ejemplos ilustran la función matplotlib.pyplot.minorticks_off() en matplotlib.pyplot:

Ejemplo 1:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
   
plt.minorticks_on()
   
np.random.seed(19680801)
mu, sigma = 100, 15
x = mu + sigma * np.random.randn(10000)
   
plt.hist(x, 150, density = True, facecolor ='g', alpha = 0.65)
   
plt.xlim(40, 160)
plt.ylim(0, 0.03)
plt.grid(True)
   
plt.minorticks_off()
plt.title('matplotlib.pyplot.minorticks_off() function Example', 
                                             fontweight ="bold")
plt.show()

Producción:

Ejemplo #2:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
   
x = np.arange(0.0, 2, 0.01)
y1 = np.sin(2 * np.pi * x)
y2 = 1.2 * np.sin(4 * np.pi * x)
   
plt.minorticks_on() 
plt.fill_between(x, y1, y2, color ="green", alpha = 0.6)
plt.minorticks_off()
plt.title('matplotlib.pyplot.minorticks_off() function Example',
                                             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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *