ノート
完全なサンプルコードをダウンロードするには、ここをクリックしてください
アニメーション化されたヒストグラム#
ヒストグラムを使用BarContainer
して、アニメーション化されたヒストグラムの一連の長方形を描画します。
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.animation as animation
# Fixing random state for reproducibility
np.random.seed(19680801)
# Fixing bin edges
HIST_BINS = np.linspace(-4, 4, 100)
# histogram our data with numpy
data = np.random.randn(1000)
n, _ = np.histogram(data, HIST_BINS)
ヒストグラムをアニメーション化するにはanimate
、ランダムな数値セットを生成し、長方形の高さを更新する関数が必要です。Python クロージャーを使用して、更新BarContainer
するRectangle
パッチのインスタンスを追跡します。
def prepare_animation(bar_container):
def animate(frame_number):
# simulate new data coming in
data = np.random.randn(1000)
n, _ = np.histogram(data, HIST_BINS)
for count, rect in zip(n, bar_container.patches):
rect.set_height(count)
return bar_container.patches
return animate
を使用すると、インスタンスのコレクションであるhist()
のインスタンスを取得でき
ます。呼び出し
は、提供された で機能する関数
を定義します。これはすべて setup に使用されます。BarContainer
Rectangle
prepare_animation
animate
BarContainer
FuncAnimation
fig, ax = plt.subplots()
_, _, bar_container = ax.hist(data, HIST_BINS, lw=1,
ec="yellow", fc="green", alpha=0.5)
ax.set_ylim(top=55) # set safe limit to ensure that all data is visible.
ani = animation.FuncAnimation(fig, prepare_animation(bar_container), 50,
repeat=False, blit=True)
plt.show()
スクリプトの合計実行時間: ( 0 分 7.371 秒)