Matplotlib에서 막대 플롯을 동적으로 업데이트하려면 다음 단계를 수행할 수 있습니다. -
- 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
- 새 그림을 만들거나 기존 그림을 활성화합니다.
- 데이터 포인트와 색상 목록을 만드세요.
- 데이터로 막대 그리기 및 색상 , bar() 사용 방법.
- FuncAnimation() 클래스를 사용하여 animation 함수를 반복적으로 호출하여 애니메이션을 만듭니다. , 막대의 높이와 막대의 면색을 설정합니다.
- 그림을 표시하려면 show()를 사용하세요. 방법.
예시
import numpy as np from matplotlib import animation as animation, pyplot as plt, cm plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True fig = plt.figure() data = [1, 4, 3, 2, 6, 7, 3] colors = ['red', 'yellow', 'blue', 'green', 'black'] bars = plt.bar(data, data, facecolor='green', alpha=0.75) def animate(frame): global bars index = np.random.randint(1, 7) bars[frame].set_height(index) bars[frame].set_facecolor(colors[np.random.randint(0, len(colors))]) ani = animation.FuncAnimation(fig, animate, frames=len(data)) plt.show()
출력