matplotlib 动态图 之 散点图(一)
程序员文章站
2022-03-21 17:40:08
...
import numpy as np
import matplotlib.pyplot as plt
from matplotlib import animation
fig = plt.figure(figsize=(6,6), facecolor='white')
ax = fig.add_axes([0, 0, 1, 1], frameon=False, aspect=1)
size=np.random.rand(1)
scat = ax.scatter(10, 10, s=size)
def update(i):
global size
size=size*1.01
scat.set_sizes(size)
return scat,
anim = animation.FuncAnimation(fig, update, interval=30, blit=True)
plt.show()
散点动态图,一个变大的圆,注意size的数据类型是NP的数组!用普通的int类型是无效的!
推荐阅读
-
Py之matplotlib&seaborn :高级图可视化之Q-Q分位数图probplot、boxplot箱线图、stripplot分类散点图案例应用及代码实现
-
pytho matplotlib工具栏源码探析一之禁用工具栏、默认工具栏和工具栏管理器三种模式的差异
-
4.2Python数据处理篇之Matplotlib系列(二)---plt.scatter()散点图
-
python学习之matplotlib绘制散点图实例
-
Py之matplotlib&seaborn :高级图可视化之Q-Q分位数图probplot、boxplot箱线图、stripplot分类散点图案例应用及代码实现
-
matplotlib 动态图 之 散点图(一)
-
python 之matplotlib学习(一)
-
pytho matplotlib工具栏源码探析一之禁用工具栏、默认工具栏和工具栏管理器三种模式的差异
-
5.Matplotlib绘图之3D图,subplot子图(多图合一),动态图