Python中的 Matplotlib.axes.Axes.redraw_in_frame()
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。
matplotlib.axes.Axes.redraw_in_frame()函数
matplotlib 库的 axes 模块中的Axes.redraw_in_frame()函数用于有效更新 Axes 数据。
Syntax: Axes.redraw_in_frame(self)
Parameters: This method does not accepts any parameters.
Returns: This method does not return any value.
注意:此方法只能在缓存渲染器的初始绘制之后使用。
下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.redraw_in_frame()函数:
示例 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()
输出:
示例 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()
输出: