用Python中的matplotlib.animation制作动态3D柱状图的示例

2024-05-11 14:41:39 发布

您现在位置:Python中文网/ 问答频道 /正文

我看到了一些使用matplotlib.animation模块的好例子,包括这个animated 3D plot example。我想知道这个动画模块是否可以与bar3d图表一起使用。在

有人能给出一个简单的例子吗?在

注意:我目前正在研究一个不包括matplotlib.animation(请参阅我的另一个post)的不同解决方案,但这似乎太慢了。。。在


Tags: 模块plotmatplotlibexample图表请参阅动画解决方案
1条回答
网友
1楼 · 发布于 2024-05-11 14:41:39

下面是一个小例子,其中有2x2条,当调用update_bars()时,它将随机增长和改变颜色:

import matplotlib.pyplot as plt
import mpl_toolkits.mplot3d.axes3d as p3
import matplotlib.animation as animation
import random

def update_bars(num, bars):
    i = random.randint(0, 3)
    dz[i] += 0.1
    bars[i] = ax.bar3d(xpos[i], ypos[i], zpos[i], dx[i], dy[i], dz[i], color=random.choice(['r', 'g', 'b']))
    return bars

fig = plt.figure()
ax = p3.Axes3D(fig)
xpos = [1, 1, 3, 3]
ypos = [1, 3, 1, 3]
zpos = [0, 0, 0, 0]
dx = [1, 1, 1, 1]
dy = [1, 1, 1, 1]
dz = [3, 2, 6, 5]

# add bars
bars = []
for i in range(4):
    bars.append(ax.bar3d(xpos[i], ypos[i], zpos[i], dx[i], dy[i], dz[i], color=random.choice(['r', 'g', 'b'])))
ax.set_title('3D bars')

line_ani = animation.FuncAnimation(fig, update_bars, 20, fargs=[bars], interval=100, blit=False)
plt.show()

输出(此处未设置动画):

plot

相关问题 更多 >