python绘制3d直方图
时间: 2023-08-27 13:06:58 浏览: 99
要绘制3D直方图,可以使用matplotlib库中的mplot3d模块。下面是一个简单的示例代码:
```python
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# 生成随机数据
x = np.random.randint(0, 10, 100)
y = np.random.randint(0, 10, 100)
z = np.random.randint(0, 10, 100)
# 绘制3D直方图
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
hist, xedges, yedges = np.histogram2d(x, y, bins=10)
xpos, ypos = np.meshgrid(xedges[:-1]+0.25, yedges[:-1]+0.25, indexing="ij")
xpos = xpos.ravel()
ypos = ypos.ravel()
zpos = 0
dx = dy = 0.5 * np.ones_like(zpos)
dz = hist.ravel()
ax.bar3d(xpos, ypos, zpos, dx, dy, dz, color='b', zsort='average')
# 显示图形
plt.show()
```
这个示例代码生成了三个随机数组`x`,`y`和`z`,然后使用`histogram2d`函数生成二维直方图。接着,将x、y和z数据转换为3D坐标系,使用`bar3d`函数绘制3D直方图。最后,使用`show`函数显示图形。
阅读全文