5

我对 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 条形图,其颜色代码从最小值变为最大值。有没有办法做到这一点?

谢谢

4

1 回答 1

1

contourf也许我不明白你到底想做什么,因为我不知道你的数据是什么样的,但是让你的图与你的图共享相同的轴似乎是错误的bar3d。如果您将没有 3D 投影的轴添加到新图形,您应该能够contourf使用hist. 使用来自随机正态分布的数据的示例:

import numpy as np
import matplotlib.pyplot as plt

n_points = 1000
x = np.random.normal(0, 2, n_points)
y = np.random.normal(0, 2, n_points)

hist, xedges, yedges = np.histogram2d(x, y, bins=np.sqrt(n_points))

fig2D = plt.figure()
ax2D = fig2D.add_subplot(111)
ax2D.contourf(hist, interpolation='nearest', 
              extent=(xedges[0], xedges[-1], yedges[0], yedges[-1]))
plt.show()

返回这样的图像。

至于你的第二个问题,关于颜色编码的 3D 条形图,这个怎么样(使用与上面相同的数据,但大小为 1/10):

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

n_points = 100
x = np.random.normal(0, 2, n_points)
y = np.random.normal(0, 2, n_points)

hist, xedges, yedges = np.histogram2d(x, y, bins=np.sqrt(n_points))

# Following your data reduction process
xpos, ypos = np.meshgrid(xedges[:-1], yedges[:-1])

length, width = 0.4, 0.4
xpos = xpos.flatten()
ypos = ypos.flatten()
zpos = np.zeros(n_points)
dx = np.ones(n_points) * length
dy = np.ones(n_points) * width
dz = hist.flatten()

# This is where the colorbar customization comes in
dz_normed = dz / dz.max()
normed_cbar = colors.Normalize(dz_normed.min(), dz_normed.max())
# Using jet, but should work with any colorbar
color = cm.jet(normed_cbar(dz_normed))

fig3D = plt.figure()
ax3D = fig3D.add_subplot(111, projection='3d')
ax3D.bar3d(xpos, ypos, zpos, dx, dy, dz, color=color)
plt.show()

我得到这个图像

于 2016-04-07T07:12:03.660 回答