相关疑难解决方法(0)

matplotlib(mplot3d) - 如何在3D Plot中增加轴(拉伸)的大小?

到目前为止我有这个:

x,y,z = data.nonzero()    
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
ax.scatter(x, y, z, zdir='z', c= 'red')
plt.savefig("plot.png")
Run Code Online (Sandbox Code Playgroud)

这创造了: 在此输入图像描述

我想要做的就是伸展它以使Z轴高9倍并保持X和Y相同.我想保持相同的坐标.

到目前为止我试过这个家伙:

fig = plt.figure(figsize=(4.,35.))
Run Code Online (Sandbox Code Playgroud)

但这只是延伸了plot.png图像.

python matplotlib

22
推荐指数
4
解决办法
1万
查看次数

瀑布情节蟒蛇?

有没有像MATLAB那样做瀑布情节的python模块呢?我搜索了'numpy waterfall','scipy waterfall'和'matplotlib waterfall',但没有找到任何东西.

python matlab numpy matplotlib scipy

18
推荐指数
2
解决办法
2万
查看次数

标签 统计

matplotlib ×2

python ×2

matlab ×1

numpy ×1

scipy ×1