Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Axes contiene la mayoría de los elementos de la figura: Axis, Tick, Line2D, Text, Polygon, etc., y establece el sistema de coordenadas. Y las instancias de Axes admiten devoluciones de llamada a través de un atributo de devoluciones de llamada.
función matplotlib.axes.Axes.redraw_in_frame()
La función Axes.redraw_in_frame() en el módulo de ejes de la biblioteca matplotlib se usa para actualizar de manera eficiente los datos de Axes.
Sintaxis: Axes.redraw_in_frame(self)
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método no devuelve ningún valor.
Nota: este método solo se puede usar después de un sorteo inicial que almacena en caché el renderizador.
Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.redraw_in_frame() en matplotlib.axes:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt fig, ax = plt.subplots() def tellme(s): ax.set_title(s, fontsize = 12, fontweight ="bold") fig.canvas.draw() ax.redraw_in_frame() tellme('matplotlib.axes.Axes.redraw_in_frame() function \ Example') plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np import time fig, ax = plt.subplots() line, = ax.plot(np.random.randn(100)) tstart = time.time() num_plots = 0 fig.canvas.draw() while time.time()-tstart < 5: line.set_ydata(np.random.randn(100)) ax.redraw_in_frame() num_plots += 1 ax.set_title('matplotlib.axes.Axes.redraw_in_frame() \ function Example') 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