【问题标题】:Plotting heatmaps under blobs in a scatter plot with matplotlib使用 matplotlib 在散点图中的 blob 下绘制热图
【发布时间】:2019-05-15 23:38:48
【问题描述】:

我有一个 Nx2 矩阵 X 和一个 N-dim 标签向量 y。例如:

from sklearn.datasets.samples_generator import make_blobs
import matplotlib.pyplot as plt

X, y = make_blobs(n_samples=100, centers=2, n_features=2, random_state=2)

plt.scatter(X[:, 0], X[:, 1], c=y, edgecolor='k')
plt.show()

在此图的背景中,我想绘制两个热图,其中一个颜色图在高点密度区域中具有点的颜色,因此图像看起来像有紫色和黄色的云,每个都集中在紫色和黄色斑点。

这对我来说是一个挑战。我尝试为每个 blob 创建一个 2D 直方图,如this 答案所示,还创建了一个自定义颜色图,以便绘图的低密度区域为白色,而高密度区域使用 blob 的颜色着色:

import numpy as np
import seaborn as sns
from matplotlib.colors import ListedColormap

palette_colors = sns.color_palette("deep")
palette = sns.light_palette(palette_colors[0], input="husl", n_colors=100)
my_cmap = ListedColormap(sns.color_palette(palette).as_hex())

whr1 = np.where(y==0)
whr2 = np.where(y==1)
x1 = X[whr1][:, 0]
y1 = X[whr1][:, 1]
x2 = X[whr2][:, 0]
y2 = X[whr2][:, 1]

heatmap1, xedges1, yedges1 = np.histogram2d(x1, y1, bins=50)
extent1 = [xedges1[0], xedges1[-1], yedges1[0], yedges1[-1]]
heatmap2, xedges2, yedges2 = np.histogram2d(x2, y2, bins=50)
extent2 = [xedges2[0], xedges2[-1], yedges2[0], yedges2[-1]]

但现在我不知道如何使用 imshow 绘制这些热图。我还想确保如果 blob 重叠,热图也会重叠,这样一个热图不会覆盖另一个热图,而是重叠区域中热图颜色和强度的组合。

非常感谢您的帮助!

【问题讨论】:

    标签: python matplotlib heatmap scatter-plot


    【解决方案1】:

    你可以使用seaborn's kdeplot

    x1,y1 = np.random.normal(loc=0.0, scale=1.0, size=(100,)), np.random.normal(loc=2.0, scale=1.0, size=(100,))
    x2,y2 = np.random.normal(loc=2., scale=1.0, size=(100,)), np.random.normal(loc=0.0, scale=1.0, size=(100,))
    
    fig, ax = plt.subplots()
    sns.kdeplot(x1,y1, shade=True, shade_lowest=False, alpha=0.5, cbar=False, ax=ax, cmap="Blues")
    sns.kdeplot(x2,y2, shade=True, shade_lowest=False, alpha=0.5, cbar=False, ax=ax, cmap="Oranges")
    ax.scatter(x1,y1, color="C0")
    ax.scatter(x2,y2, color="C1")
    

    【讨论】:

    • 我对您的解决方案感到满意。但是,在重叠区域中,橙色密度图明显位于蓝色密度图之上,这在我想要解决问题的应用程序中出现问题,因为我有 10 个不同的斑点,它们在许多区域重叠,并且背景密度图看起来不太好。但这肯定是一个很好的解决方案
    猜你喜欢
    • 2021-10-14
    • 2018-06-23
    • 1970-01-01
    • 2023-03-13
    • 2020-07-28
    • 2022-01-21
    • 1970-01-01
    • 2020-03-31
    • 1970-01-01
    相关资源
    最近更新 更多