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.Tick.remove()
La función Tick.remove() en el módulo de eje de la biblioteca matplotlib se usa para eliminar al artista de la figura si es posible.
Sintaxis: Tick.remove(self)
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve la figura después de eliminar al artista.
Los siguientes ejemplos ilustran la función matplotlib.axis.Tick.remove() en matplotlib.axis:
Ejemplo 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Tick import matplotlib.pyplot as plt fig, axs = plt.subplots() axs.plot([1, 2, 3]) # use of remove() method Tick.remove(axs) fig.suptitle('matplotlib.axis.Tick.remove() \ function Example', fontweight ="bold") plt.show()
Producción:
Ejemplo 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Tick import matplotlib.pyplot as plt fig, (axs, axs2) = plt.subplots(1, 2) gs = axs2.get_gridspec() # use of remove() method Tick.remove(axs) axbig = fig.add_subplot(gs[0:, -1]) axbig.annotate("Removed one Axes", (0.4, 0.5), xycoords ='axes fraction', va ='center') fig.suptitle('matplotlib.axis.Tick.remove() \ 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