Matplotlib.artist.Artist.remove_callback() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Artist contiene una clase base Abstract para objetos que se representan en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.

método matplotlib.artist.Artist.remove_callback()

El método remove_callback() en el módulo de artista de la biblioteca matplotlib se usa para agregar una función de devolución de llamada que se llamará cada vez que cambie una de las propiedades del artista.

Sintaxis: Artist.remove_callback(self, oid)

Parámetros: este método acepta los siguientes parámetros.

  • oid: este parámetro es el id del observador.

Devoluciones: este método devuelve la eliminación de una devolución de llamada en función de su ID de observador.

Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.remove_callback() en matplotlib:

Ejemplo 1:

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
import time
  
  
def update():
    global timer
    plt.get_current_fig_manager().canvas.figure.patch.set_facecolor(str(np.random.random()))
    plt.draw()
        
    
def start_animation():
    global it
    timer = fig.canvas.new_timer(interval = 50)
    w = timer.add_callback(update)
    timer.start()
    timer.remove_callback(w)
  
it = 1
fig = plt.figure()
start_animation()
         
fig.suptitle('matplotlib.artist.Artist.remove_callback()\
 function Example', fontweight ="bold") 
  
plt.show()

Producción:

Ejemplo 2:

# Implementation of matplotlib function  
from random import randint, choice 
import time 
import matplotlib.pyplot as plt 
import matplotlib.patches as patches 
     
   
back_color = "black"
colors = ['red', 'green', 'blue', 'purple'] 
width, height = 4, 4
      
fig = plt.figure() 
plt.xlim([0, width])
plt.ylim([0, height]) 
      
fig.canvas.draw() 
  
it = 1 
def update():
    global it
    x = randint(0, width - 1) 
    y = randint(0, height - 1) 
      
    arti = mpatches.Rectangle( 
        (x, y), 1, 1, 
        facecolor = choice(colors), 
        edgecolor = back_color 
    ) 
  
    fig.add_artist(arti)
    fig.draw_artist(arti)
    fig.canvas.blit(fig.bbox)
  
    if it > 100:
        timer.remove_callback(w)
    it += 1
      
timer = fig.canvas.new_timer(interval = 1) 
w = timer.add_callback(update) 
timer.start() 
  
fig.suptitle('matplotlib.artist.Artist.remove_callback() \
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 *