matplotlib:如何在2D直方图中指定轮廓水平

时间:2014-12-05 17:59:29

标签: python numpy matplotlib histogram

我想绘制一个包含正数和负数的二维直方图。我有以下代码使用pcolormesh但我无法指定颜色级别来强制白色对应于零(即,我希望我的颜色条对称于零左右)。我也试过imshow。

我知道您可以在plt.contour和plt.contourf中指定颜色级别,但我找不到使用块绘制2D直方图的方法。

非常感谢任何建议。

import numpy as np
import matplotlib.pyplot as plt
from matplotlib import cm as CM

fig = plt.figure()

# create an example histogram which is asymmetrical around zero
x = np.random.rand(400)
y = np.random.rand(400)    
Z, xedges, yedges = np.histogram2d(x, y, bins=10)   
Z = Z - 2.

plt.pcolormesh(xedges, yedges, Z, cmap=CM.RdBu_r)

plt.colorbar()
plt.savefig('test.png')

enter image description here

2 个答案:

答案 0 :(得分:4)

感谢http://nbviewer.ipython.org/gist/pelson/5628989

import matplotlib.pyplot as plt
import numpy as np
from matplotlib.colors import from_levels_and_colors

x = np.random.rand(400)
y = np.random.rand(400)
Z, xedges, yedges = np.histogram2d(x, y, bins=10)
Z = Z - 2.
#  -1 0 3 6 9
cmap, norm = from_levels_and_colors([-1, 0, 3, 6, 9, 12], ['r', 'b', 'g', 'y', 'm']) # mention levels and colors here
plt.pcolormesh(xedges, yedges, Z, cmap=cmap, norm=norm)
plt.colorbar()
plt.show()

enter image description here

答案 1 :(得分:0)

添加具有相等绝对值的vminvmax参数

plt.pcolormesh(xedges, yedges, Z, cmap=CM.RdBu_r, vmin=-7, vmax=7)

并查看您是否喜欢结果

enter image description here