編集:最近では、使用する方が簡単で優れていますmatplotlib.animation
:
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
def animate(frameno):
x = mu + sigma * np.random.randn(10000)
n, _ = np.histogram(x, bins, normed=True)
for rect, h in zip(patches, n):
rect.set_height(h)
return patches
mu, sigma = 100, 15
fig, ax = plt.subplots()
x = mu + sigma * np.random.randn(10000)
n, bins, patches = plt.hist(x, 50, normed=1, facecolor='green', alpha=0.75)
ani = animation.FuncAnimation(fig, animate, blit=True, interval=10,
repeat=True)
plt.show()
ここにアニメーショングラフを作成する例があります。この例に基づいて、次のようなことを試すことができます。
import numpy as np
import matplotlib.pyplot as plt
plt.ion()
mu, sigma = 100, 15
fig = plt.figure()
x = mu + sigma*np.random.randn(10000)
n, bins, patches = plt.hist(x, 50, normed=1, facecolor='green', alpha=0.75)
for i in range(50):
x = mu + sigma*np.random.randn(10000)
n, bins = np.histogram(x, bins, normed=True)
for rect,h in zip(patches,n):
rect.set_height(h)
fig.canvas.draw()
最初に投稿したコードを使用して毎秒 4 フレームと比較して、この方法で毎秒約 14 フレームを取得できます。秘訣は、matplotlib に完全な図を描画するように要求しないようにすることです。代わりにplt.hist
、一度呼び出してから既存matplotlib.patches.Rectangle
の を操作しpatches
てヒストグラムを更新し、呼び出し
fig.canvas.draw()
て更新を表示します。