代码
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d.axes3d import Axes3D
import numpy as np
fig=plt.figure()
axes3d=Axes3D(fig)
zs = [1, 5, 10, 15, 20]
for z in zs:
x = np.arange(0, 10)
y = np.random.randint(0, 30, size=10)
axes3d.bar(x, y,zs=z, zdir='x', color=['r', 'green', 'yellow', 'c'])
结果
<Figure size 432x288 with 0 Axes>
Spyder画3D柱形图只显示figure size 432*288 with 0Axe,却没有图片s
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
凯歌响起 2022-10-09 12:59关注import matplotlib.pyplot as plt import numpy as np fig=plt.figure() axes3d= fig.add_subplot(111, projection='3d') zs = [1, 5, 10, 15, 20] for z in zs: x = np.arange(0, 10) y = np.random.randint(0, 30, size=10) axes3d.bar(x, y,zs=z, zdir='x', color=['r', 'green', 'yellow', 'c']) axes3d.set_xlabel('X Label') axes3d.set_ylabel('Y Label') axes3d.set_zlabel('Z Label') plt.show()本回答被题主选为最佳回答 , 对您是否有帮助呢?评论 打赏 举报解决 2无用 1