gpt4 book ai didi

python - 如何在没有对数缩放图像的情况下应用对数轴标签(matplotlib imshow)

转载 作者:行者123 更新时间:2023-11-28 22:20:33 29 4
gpt4 key购买 nike

我有一个呈对数分布的大型数据集。我想制作一个热图,所以我做了一个 2D 直方图并将其传递给 implot。因为数据是对数的,所以我将数据的日志传递给直方图。但是,当我绘制绘图时,我希望恢复轴(即 10^hist bin 值)和对数轴。如果我将轴设置为对数样式,则图像看起来都是倾斜的。当我将数据传递给直方图时,数据已经被“记录”下来,所以我不希望图像受到影响,只希望轴受到影响。因此,在下面的示例中,我想要左侧的图像和右侧的轴。

我想我可以用一个假的重叠轴来做,但如果有更好的方法,我不喜欢做那种事......

enter image description here

import numpy as np
import matplotlib.pyplot as plt

x=10**np.random.random(10000)*5
y=10**np.random.random(10000)*5

samps, xedges, yedges = np.histogram2d(np.log10(y), np.log10(x), bins=50)

ax = plt.subplot(121)

plt.imshow(samps, extent=[0,5,0,5])
plt.xlabel('Log10 X')
plt.ylabel('Log10 Y')

ax = plt.subplot(122)
plt.imshow(samps, extent=[10**0,10**5,10**0,10**5])
plt.xlabel('X')
plt.ylabel('Y')
plt.xscale('log')
plt.yscale('log')
plt.show()

最佳答案

您需要使用自定义格式化程序。这是 matplotlib 文档中的示例: https://matplotlib.org/examples/pylab_examples/custom_ticker1.html

我倾向于像示例那样使用 FuncFormatter。主要技巧是您的函数需要接受参数 xpos。老实说,我不知道 pos 是干什么用的。也许不是故意的,但你可以使用 FuncFormatter 作为装饰器,这就是我在下面所做的:

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt

@plt.FuncFormatter
def fake_log(x, pos):
'The two args are the value and tick position'
return r'$10^{%d}$' % (x)

x=10**np.random.random(10000)*5
y=10**np.random.random(10000)*5

samps, xedges, yedges = np.histogram2d(np.log10(y), np.log10(x), bins=50)

fig, (ax1) = plt.subplots()
ax1.imshow(samps, extent=[0, 5, 0, 5])
ax1.xaxis.set_major_formatter(fake_log)
ax1.yaxis.set_major_formatter(fake_log)
ax1.set_xlabel('X')
ax1.set_ylabel('Y')

enter image description here

关于python - 如何在没有对数缩放图像的情况下应用对数轴标签(matplotlib imshow),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48858854/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com