gpt4 book ai didi

python - PairGrid 与 Seaborn 中的 Hexbin 图

转载 作者:太空宇宙 更新时间:2023-11-04 00:44:17 25 4
gpt4 key购买 nike

我正在尝试在 Seaborn 网格中获取 hexbin 图。我有以下代码,

# Works in Jupyter with Python 2 Kernel.
%matplotlib inline

import seaborn as sns
import matplotlib as mpl
import matplotlib.pyplot as plt

tips = sns.load_dataset("tips")

# Borrowed from http://stackoverflow.com/a/31385996/4099925
def hexbin(x, y, color, **kwargs):
cmap = sns.light_palette(color, as_cmap=True)
plt.hexbin(x, y, gridsize=15, cmap=cmap, extent=[min(x), max(x), min(y), max(y)], **kwargs)

g = sns.PairGrid(tips, hue='sex')
g.map_diag(plt.hist)
g.map_lower(sns.stripplot, jitter=True, alpha=0.5)
g.map_upper(hexbin)

但是,这给了我下面的图像, seaborn output

如何修复 hexbin 图,使其覆盖整个图形表面,而不仅仅是显示绘图区域的一个子集?

最佳答案

您在这里尝试做的事情(至少)存在三个问题。

  1. stripplot 用于至少有一个轴是分类的数据。在这种情况下,情况并非如此。 Seaborn 猜测 x 轴是分类轴,它弄乱了子图的 x 轴。来自docs for stripplot :

    Draw a scatterplot where one variable is categorical.

    在下面建议的代码中,我已将其更改为简单的散点图。

  2. 在彼此之上绘制两个 hexbin-plots 只会显示后一个。我向 hexbin 参数添加了一些 alpha=0.5,但结果远非完美。

  3. 代码中的范围参数将 hexbin 图调整为每种性别的 xy 一次一个。但是两个 hexbin 图的大小都必须相等,因此它们应该使用整个系列的最小值/最大值,涵盖两性 性别。为实现这一点,我将所有系列的最小值和最大值传递给 hexbin 函数,该函数然后可以选择并使用相关值。

这是我想出的:

# Works in Jupyter with Python 2 Kernel.
%matplotlib inline

import seaborn as sns
import matplotlib as mpl
import matplotlib.pyplot as plt

tips = sns.load_dataset("tips")

# Borrowed from http://stackoverflow.com/a/31385996/4099925
def hexbin(x, y, color, max_series=None, min_series=None, **kwargs):
cmap = sns.light_palette(color, as_cmap=True)
ax = plt.gca()
xmin, xmax = min_series[x.name], max_series[x.name]
ymin, ymax = min_series[y.name], max_series[y.name]
plt.hexbin(x, y, gridsize=15, cmap=cmap, extent=[xmin, xmax, ymin, ymax], **kwargs)

g = sns.PairGrid(tips, hue='sex')
g.map_diag(plt.hist)
g.map_lower(plt.scatter, alpha=0.5)
g.map_upper(hexbin, min_series=tips.min(), max_series=tips.max(), alpha=0.5)

结果如下: enter image description here

关于python - PairGrid 与 Seaborn 中的 Hexbin 图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40495093/

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