在matplotlib中将颜色条显示为对数概率标度

时间:2014-11-05 22:05:48

标签: python matplotlib

我试图用matplotlib中的colorbar显示对数概率。所以我使用了以下代码。

hist2d(x, y, bins=50, cmap=plt.cm.cool, alpha=0.75)
colorbar()

hist2d(x, y, bins=50, norm=matplotlib.colors.Norm())
colorbar()

然而,我无法得到正确的答案。我可以告诉你我想要的东西。

enter image description here

该图由matlab生成。 (不是我的)颜色条显示准确的对数概率。我怎么能在matplotlib中做到这一点?

P.S。,

此代码

hist2d(x, y, bins=50, norm=matplotlib.colors.Norm())
colorbar()

产生

enter image description here

0 个答案:

没有答案