这个问题的底部有一个如何构建条形图的示例,取自 matplotlib 站点。
我找不到增加每个条的深度的参数。我想要深度给它一个像这张照片一样的 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()
我找到了这个解决方案的链接,但这个解决方案实际上并没有增加深度。如果可能的话,我希望有一种方法可以完全填充深度。