更新matplotlib条形图?

M_M*_*ose 5 python matplotlib

我有一个条形图,它从一个字典中检索它的y值.我不需要显示具有所有不同值的多个图形,而是必须关闭每个图形,我需要它来更新同一图形上的值.这有解决方案吗?

unu*_*tbu 10

以下是如何为条形图设置动画的示例.您plt.bar只调用一次,保存返回值rects,然后调用rect.set_height以修改条形图.调用fig.canvas.draw()更新数字.

import matplotlib
matplotlib.use('TKAgg')
import matplotlib.pyplot as plt
import numpy as np

def animated_barplot():
    # http://www.scipy.org/Cookbook/Matplotlib/Animations
    mu, sigma = 100, 15
    N = 4
    x = mu + sigma*np.random.randn(N)
    rects = plt.bar(range(N), x,  align = 'center')
    for i in range(50):
        x = mu + sigma*np.random.randn(N)
        for rect, h in zip(rects, x):
            rect.set_height(h)
        fig.canvas.draw()

fig = plt.figure()
win = fig.canvas.manager.window
win.after(100, animated_barplot)
plt.show()
Run Code Online (Sandbox Code Playgroud)


sto*_*tic 5

我将上述出色的解决方案简化为其要点,更多详细信息请参阅我的博客文章

import numpy as np
import matplotlib.pyplot as plt

numBins = 100
numEvents = 100000

file = 'datafile_100bins_100000events.histogram'
histogramSeries = np.loadtext(file)

fig, ax = plt.subplots()
rects = ax.bar(range(numBins), np.ones(numBins)*40)  # 40 is upper bound of y-axis 

for i in range(numEvents):
    for rect,h in zip(rects,histogramSeries[i,:]):
        rect.set_height(h)
    fig.canvas.draw()
    plt.pause(0.001)
Run Code Online (Sandbox Code Playgroud)