Matplotlib.axis.Tick.get_animated() en Python

matplotlib.axis.Tick.get_animated() La función en el módulo de eje de la biblioteca matplotlib se usa para obtener el estado animado. 

Sintaxis: Tick.get_animated(self) 
Parámetros: Este método no acepta ningún parámetro. 
Valor devuelto: este método devuelve el estado animado. 

Los siguientes ejemplos ilustran la función matplotlib.axis.Tick.get_animated() en matplotlib.axis.

Ejemplo 1:

Python3

# Implementation of matplotlib function
from matplotlib.axis import Tick
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
  
data = np.array([[1, 2, 3, 4, 5],
                 [7, 4, 9, 2, 3]])
  
fig = plt.figure()
ax = plt.axes(xlim=(0, 7.5), ylim=(0, 10))
  
line, = ax.plot(data[0], data[1], 'go-')
annotation = ax.annotate('', xy=(data[0][0],
                                 data[1][0]))
  
Tick.set_animated(annotation,
                  not Tick.get_animated(annotation))
  
fig.suptitle("""matplotlib.axis.Tick.get_animated()
function Example\n""", fontweight="bold")
  
plt.show()

Producción: 
 

 

Ejemplo 2:

Python3

# Implementation of matplotlib function
from matplotlib.axis import Tick
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
  
fig, ax = plt.subplots()
  
ax.set_xlim([-1, 1])
ax.set_ylim([-1, 1])
  
L = 50
theta = np.linspace(0, 2 * np.pi, L)
r = np.ones_like(theta)
  
x = r * np.cos(theta)
y = r * np.sin(theta)
  
line, = ax.plot(.9, 0, 'go-')
  
annotation = ax.annotate(
    'annotation', xy=(.9, 0), xytext=(-.9, 0),
    arrowprops={'arrowstyle': "->"}
)
  
Tick.set_animated(annotation, 
                  Tick.get_animated(annotation))
  
fig.suptitle("""matplotlib.axis.Tick.get_animated()
function Example\n""", 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 *