메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
애니메이션 히스토그램 #
히스토그램 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()
를 가져올 수 있습니다
. 호출
은 제공된 과 함께 작동하는 기능
을 정의 하며 이 모든 것은 설정에 사용됩니다 .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초)