我对 matplotlib 的 contourf 函数有疑问。我有一个 txt 数据文件,我要从中导入数据。我有数据列(pm1 和 pm2),我正在执行 2D 直方图。我想将此数据绘制为 3D 直方图和等高线图,以查看最大值的位置。
这是我的代码:
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
rows = np.arange(200,1300,10)
hist, xedges, yedges = np.histogram2d (pm1_n, pm2_n, bins = (rows, rows) )
elements = (len(xedges) - 1) * (len(yedges) - 1)
xpos, ypos = np.meshgrid(xedges[:-1], yedges[:-1])
xpos = xpos.flatten()
ypos = ypos.flatten()
zpos = np.zeros(elements)
dx = 0.1 * np.ones_like(zpos)
dy = dx.copy()
dz = hist.flatten()
#####The problem is here#####
#ax.contourf(xpos,ypos,hist)
#ax.bar3d(xpos, ypos, zpos, dx, dy, dz, zsort='average')
plt.show()
我可以绘制 3d 条形图,但我无法绘制轮廓之一,如果我放置hist
在 contourf 函数中,我会得到错误: Length of x must be number of columns in z
如果我放置dz
我得到Input z must be a 2D array
我也尝试使用 xedges 和 yexges 但这并没有解决问题。
我认为问题与函数 histogram2D 的返回形状有关。但我不知道如何解决它。
我还想执行一个 3D 条形图,其颜色代码从最小值变为最大值。有没有办法做到这一点?
谢谢