gpt4 book ai didi

python - 带有点颜色的散点图表示 seaborn FacetGrid 中的连续变量

转载 作者:太空狗 更新时间:2023-10-29 20:57:50 32 4
gpt4 key购买 nike

我正在尝试在 python 中使用 seaborn 生成多面板图形,我希望我的多面板图形中的点的颜色由连续变量指定。这是我尝试使用“iris”数据集执行的示例:

import numpy as np
import pandas as pd
import seaborn as sns
import matplotlib as mpl
import matplotlib.pyplot as plt
iris = sns.load_dataset('iris')

g = sns.FacetGrid(iris, col = 'species', hue = 'petal_length', palette = 'seismic')
g = g.map(plt.scatter, 'sepal_length', 'sepal_width', s = 100, alpha = 0.5)
g.add_legend()

这样就形成了下图: iris_continuous

这很好,但是图例太长了。我想抽取这些值的 1/4(理想情况下)或禁止显示颜色条。例如,这样的事情可能是可以接受的,但我仍然想将它分成三个物种。

plt.scatter(iris.sepal_length, iris.sepal_width, alpha = .8, c = iris.petal_length, cmap = 'seismic')
cbar = plt.colorbar()

one panel

关于如何充分利用这两个地 block ,我有什么想法吗?

编辑:这个主题似乎是一个好的开始。

https://github.com/mwaskom/seaborn/issues/582

不知何故,对于这个用户来说,在其他一切运行之后简单地附加 plt.colorbar 似乎以某种方式工作。不过在这种情况下似乎没有帮助。

最佳答案

FacetGrid hue 是分类的,不是连续的。在 FacetGrid 中获取散点图的连续颜色图需要一些工作(与链接的 Github 问题中的 imshow 不同,matplotlib 不保留对“当前事件的散点图映射器”,以便对 plt.colorbar 的魔法调用不会获取应用于点颜色的映射。

g = sns.FacetGrid(iris, col='species', palette = 'seismic')

def facet_scatter(x, y, c, **kwargs):
"""Draw scatterplot with point colors from a faceted DataFrame columns."""
kwargs.pop("color")
plt.scatter(x, y, c=c, **kwargs)

vmin, vmax = 0, 7
cmap = sns.diverging_palette(240, 10, l=65, center="dark", as_cmap=True)

g = g.map(facet_scatter, 'sepal_length', 'sepal_width', "petal_length",
s=100, alpha=0.5, vmin=vmin, vmax=vmax, cmap=cmap)

# Make space for the colorbar
g.fig.subplots_adjust(right=.92)

# Define a new Axes where the colorbar will go
cax = g.fig.add_axes([.94, .25, .02, .6])

# Get a mappable object with the same colormap as the data
points = plt.scatter([], [], c=[], vmin=vmin, vmax=vmax, cmap=cmap)

# Draw the colorbar
g.fig.colorbar(points, cax=cax)

enter image description here

关于python - 带有点颜色的散点图表示 seaborn FacetGrid 中的连续变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44641669/

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