python绘制动态条形图
时间: 2023-07-05 19:36:26 浏览: 48
python matplotlib库绘制条形图练习题
要绘制动态条形图,可以使用Python的Matplotlib库中的animation模块。以下是一个简单的示例代码:
``` python
import matplotlib.pyplot as plt
import matplotlib.animation as animation
import random
fig, ax = plt.subplots()
# 初始化数据
x = ['A', 'B', 'C', 'D']
y = [random.randint(1, 10) for _ in range(4)]
bar = ax.bar(x, y)
# 更新函数
def update(num):
# 生成新数据
y = [random.randint(1, 10) for _ in range(4)]
# 更新条形图
for i, b in enumerate(bar):
b.set_height(y[i])
return bar
# 动画对象
ani = animation.FuncAnimation(fig, update, frames=range(10), repeat=True)
plt.show()
```
在这个示例中,我们首先创建一个包含4个条形的条形图。然后,我们定义一个更新函数,该函数生成新的随机数据并更新条形图。最后,我们使用animation.FuncAnimation函数创建一个动画对象,并将其传递给plt.show()函数以显示动画。
阅读全文