如何在python中使用Axes3D绘制数据?

时间:2018-12-09 22:23:58

标签: python matplotlib

我需要使用python的Axes3D绘制数据。这是我的代码:

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

x = [74, 74, 74, 74, 74, 74, 74, 74, 192, 74]
y = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
z =  [1455, 1219, 1240, 1338, 1276, 1298, 1292, 1157, 486, 1388]
dx = np.ones(10)
dy = np.ones(10)
dz = [0,1,2,3,4,5,6,7,8,9]


fig = plt.figure()
ax = Axes3D(fig)
ax.bar3d(x, y, z, dx, dy, dz, color='#00ceaa')
ax.w_xaxis.set_ticklabels(x)
ax.w_yaxis.set_ticklabels(y)
ax.set_title("Data Analysis ")
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z')


plt.show()

enter image description here

我的问题是我希望有一个看起来像直方图的大条形图。但是我没有那个结果,这意味着它看起来像这样:

mat

我必须在代码中进行哪些更改才能使图形像第二个图形一样?

1 个答案:

答案 0 :(得分:0)

不幸的是,您目前无法在任何Matplotlib版本> = 2(Issue #10237)中获得透明条。

此外,问题在于,您以某种方式弄错了x,y,z和dx,dy,dz的角色。我想你的意思是

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

x = [74, 74, 74, 74, 74, 74, 74, 74, 192, 74]
y = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
z =  np.zeros(10)
dx = np.ones(10)*10
dy = np.ones(10)
dz = [1455, 1219, 1240, 1338, 1276, 1298, 1292, 1157, 486, 1388]

fig = plt.figure()
ax = Axes3D(fig)
bar3d = ax.bar3d(x, y, z, dx, dy, dz, color='C0')

ax.set_title("Data Analysis ")
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z')

plt.show()

enter image description here