gpt4 book ai didi

python - 从三个一维数组创建热图

转载 作者:行者123 更新时间:2023-12-05 05:53:11 25 4
gpt4 key购买 nike

我想用 3 个一维数组创建一个热图。看起来像这样的东西:

enter image description here

到目前为止,我只能创建一个散点图,其中标记具有不同的颜色和标记大小,具体取决于第三个值:

我的代码:

xf = np.random.rand(1000)
yf = np.random.rand(1000)
zf = 1e5*np.random.rand(1000)
ms1 = (zf).astype('int')


from matplotlib.colors import LinearSegmentedColormap
# Remove the middle 40% of the RdBu_r colormap
interval = np.hstack([np.linspace(0, 0.4), np.linspace(0.6, 1)])
colors = plt.cm.RdBu_r(interval)
cmap = LinearSegmentedColormap.from_list('name', colors)
col = cmap(np.linspace(0,1,len(ms1)))
#for i in range(len(ms1)):
plt.scatter(xf, yf, c=zf, s=5*ms1/1e4, cmap=cmap,alpha=0.8)#, norm =matplotlib.colors.LogNorm())
ax1 =plt.colorbar(pad=0.01)

给我这个结果:

enter image description here

知道如何让它看起来像第一个图形吗?

基本上我想做的是找到 x 和 y 数组组的 z 值的平均值

最佳答案

我认为您正在寻找的功能由 scipy.stats.binned_statistic_2d 提供.您可以使用它将 xfyf 数组的值组织到二维 bin 中,并计算每个 bin 中 zf 值的平均值:

import numpy as np
from scipy import stats

np.random.seed(0)
xf = np.random.rand(1000)
yf = np.random.rand(1000)
zf = 1e5 * np.random.rand(1000)

means = stats.binned_statistic_2d(xf,
yf,
values=zf,
statistic='mean',
bins=(5, 5))[0]

然后你可以使用例如seaborn 绘制平均值数组的热图:

import matplotlib.pyplot as plt
import seaborn as sns

plt.figure(figsize=(10, 8))
sns.heatmap(means,
cmap="Reds_r",
annot=True,
annot_kws={"fontsize": 16},
cbar=True,
linewidth=2,
square=True)
plt.show()

这给出:

enter image description here

关于python - 从三个一维数组创建热图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69950977/

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