数据可视化:matplotlib animation 绘制动画(2)
ref: https://matplotlib.org/3.1.1/api/animation_api.html
matplotlib animation 动画教程都是针对曲线类型的,
对于包含子图、或含有类似直方图等图形的情况,就不适用了。
下面尝试实现包含多个子图,同时有直方图的动画效果。
1 | import matplotlib.animation as animation |
ok!
ref: https://matplotlib.org/3.1.1/api/animation_api.html
matplotlib animation 动画教程都是针对曲线类型的,
对于包含子图、或含有类似直方图等图形的情况,就不适用了。
下面尝试实现包含多个子图,同时有直方图的动画效果。
1 | import matplotlib.animation as animation |
ok!