如何填写mplot3d条形图深度? [Python 3.x]

时间:2015-04-17 04:42:50

标签: python matplotlib plot bar-chart mplot3d

有一个例子说明如何在matplotlib网站的问题底部构建一个条形图。

我找不到一个参数来增加每个条的深度。我希望深度给它一个像this picture.

的3d外观

是否有一个功能参数可以改变这一点,我没有看到,或者我需要使用不同的3D条形图功能?

以下是第一个链接中的条形图代码,以防有人看不到它:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
for c, z in zip(['r', 'g', 'b', 'y'], [30, 20, 10, 0]):
    xs = np.arange(20)
    ys = np.random.rand(20)

    # You can provide either a single color or an array. To demonstrate this,
    # the first bar of each set will be colored cyan.
    cs = [c] * len(xs)
    cs[0] = 'c'
    ax.bar(xs, ys, zs=z, zdir='y', color=cs, alpha=0.8)

ax.set_xlabel('X')
ax.set_ylabel('Y')
ax.set_zlabel('Z')

plt.show()

我发现了this link to a solution,但这个解决方案并没有真正增加深度。如果可能的话,我希望有一种方法可以完全填充深度。

1 个答案:

答案 0 :(得分:0)

你想要this answer中的代码吗?他们使用bar3d(),但每个栏的位置都是使用meshgrid手动创建的。