python3中关于matplotlib的figure内数据动态更新的问题
想问一下大神们,我用matplotlib创建的图表,希望能实现动态更新,不知道有没有类似更新的方法。数据是从CSV文件中读出来的,CSV中的数据时DataFrame格式,...
想问一下大神们,我用matplotlib创建的图表,希望能实现动态更新,不知道有没有类似更新的方法。数据是从CSV文件中读出来的,CSV中的数据时DataFrame格式,更一段时间会更新数据。
展开
1个回答
展开全部
你可以参考一下下面的代码:
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10*np.pi, 100)
y = np.sin(x)
plt.ion() #Setting interactive mode on is essential: plt.ion(). This controls if the figure is redrawn every draw() command.
fig = plt.figure()
ax = fig.add_subplot(111)
line1, = ax.plot(x, y, 'b-')
for phase in np.linspace(0, 10*np.pi, 100):
line1.set_ydata(np.sin(0.5 * x + phase))
fig.canvas.draw() #不断的更新
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(0, 10*np.pi, 100)
y = np.sin(x)
plt.ion() #Setting interactive mode on is essential: plt.ion(). This controls if the figure is redrawn every draw() command.
fig = plt.figure()
ax = fig.add_subplot(111)
line1, = ax.plot(x, y, 'b-')
for phase in np.linspace(0, 10*np.pi, 100):
line1.set_ydata(np.sin(0.5 * x + phase))
fig.canvas.draw() #不断的更新
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询