Seaborn散点图的“色调”颜色不正确

2024-09-26 22:10:03 发布

您现在位置:Python中文网/ 问答频道 /正文

我在给散点图标记着色时遇到了一些麻烦。我有一个简单的数据框,其中有一个值“pos”和另外两个值“af_min”和“af_max”。我想根据af_x和af_y的一些条件给标记上色,但是因为我没有任何列可以用作色调,所以我创建了自己的列“color”

       pos      af_x      af_y  color 
0  3671023  0.200000  0.333333    2.0
1  4492071  0.176471  0.333333    2.0
2  4492302  0.222222  0.285714    2.0
3  4525905  0.298246  0.234043    2.0
4  4520905  0.003334  0.234043    1.0
5  4520905  0.400098  0.000221    0.0
6  4520905  0.001134  0.714043    1.0
7  4520905  0.559008  0.010221    0.0

现在,我使用seaborn和seaborn调色板以以下方式创建散点图:

sns.scatterplot(data = df, x="af_x", y="af_y", hue="color", palette = "hsv", s=40, legend=False)

但是结果是:正如你所看到的,一种色调不能被着色,因为只有两种颜色,蓝色和红色Attempt using hsv palette

现在发生了一件非常奇怪的事情:为了解决这个问题,我制作了自己的调色板广告,并将其添加到seaborn istance中。但是散点图并没有用我选择的阴影来着色,而是用我前段时间在另一个脚本中使用的一些颜色来着色,并且没有办法改变它们。这里是绘图:Scatter with personal palette 下面是代码:

           #violet      #green      #orange
 colors = ['#747FE3', '#8EE35D', '#E37346']
 sns.set_palette(sns.color_palette(colors))

 sns.scatterplot(data = df,  x="af_x", y="af_y", hue="color", s=40, legend=False)

在这里,我放置了整个脚本,以便您可以复制它:

import pandas as pd
import matplotlib.pyplot as plt
import numpy as np
import seaborn as sns

lst = [[3671023, 0.200000, 0.333333], [4492071, 0.176471, 0.333333],
      [4492302, 0.222222, 0.285714], [4525905, 0.298246, 0.234043],
      [4520905, 0.003334, 0.234043], [4520905, 0.400098, 0.000221], 
      [4520905, 0.001134, 0.714043], [4520905, 0.559008, 0.010221]
      ]
df = pd.DataFrame(lst, columns =['pos', 'af_x', 'af_y'])

afMin=0.1
afMax=0.9

df['color']=np.nan
for index in df.index:
  afx=df.loc[index, "af_x"]
  afy=df.loc[index, "af_y"]
  if ((afx >= afMin and afx <= afMax) and (afy < afMin or afy > afMax)):
      df.loc[index, "color"] = 0
  elif ((afy >= afMin and afy <= afMax) and (afx < afMin or afx > afMax)):
      df.loc[index, "color"] = 1
  elif ((afy >= afMin and afy <= afMax) and (afx >= afMin or afx <= afMax)):
      df.loc[index, "color"] = 2

sns.scatterplot(data = df,  x="af_x", y="af_y", hue="color", palette = "hsv", s=40, 
legend=False)

plt.savefig("stack_why_hsv.png")

           #violet      #green      #orange
colors = ['#747FE3', '#8EE35D', '#E37346']
sns.set_palette(sns.color_palette(colors))

sns.scatterplot(data = df,  x="af_x", y="af_y", hue="color", s=40, legend=False)
plt.savefig("stack_why_personal.png")

感谢所有能帮忙的人


Tags: anddfindexseabornloccoloraf着色
1条回答
网友
1楼 · 发布于 2024-09-26 22:10:03

第一个示例的问题是hsv调色板在其开始和结束处具有相同的颜色。这是因为"hsv"中的“h”是一个循环变量,从0到360度。Matplotlib默认使用3种颜色,在颜色范围内均匀分布,因此从开始使用红色,从中心使用青色,再从结束使用红色。因此,在这种情况下,hsv不是最合适的配色方案。见matplotlib's available colormapsseaborn's extensions

hsv调色板: hsv palette

对于第二个示例,^{}设置matplotlib的颜色循环,但seaborn本身并不总是使用它。当给定数字色调时,seaborn default默认选择rocket颜色贴图。从documentation开始:

The default treatment of the hue (and to a lesser extent, size) semantic, if present, depends on whether the variable is inferred to represent “numeric” or “categorical” data. In particular, numeric variables are represented with a sequential colormap by default, and the legend entries show regular “ticks” with values that may or may not exist in the data.

使用自定义调色板的最简单方法是直接将其提供给函数(无需调用sns.color_palette(),因为seaborn调色板内部只是颜色列表):

colors = ['#747FE3', '#8EE35D', '#E37346']
sns.scatterplot(data = df,  x="af_x", y="af_y", hue="color", palette=colors, s=40)

sns.scatterplot with custom colors

PS:set_palette当色调是分类的时,由scatterplot使用。这里有一个例子。我还添加了preferred way to set values to a selection of rows;这对于大型数据帧非常重要。请注意,数组上的布尔运算需要相当多的括号

afMin = 0.1
afMax = 0.9

df['color'] = ""
afx = df["af_x"]
afy = df["af_y"]
df.loc[((afx >= afMin) & (afx <= afMax) & ((afy < afMin) | (afy > afMax))), "color"] = "a"
df.loc[((afy >= afMin) & (afy <= afMax) & ((afx < afMin) | (afx > afMax))), "color"] = "b"
df.loc[((afy >= afMin) & (afy <= afMax) & (afx >= afMin) & (afx <= afMax)), "color"] = "c"

colors = ['#747FE3', '#8EE35D', '#E37346']
sns.set_palette(sns.color_palette(colors))

sns.scatterplot(data=df, x="af_x", y="af_y", hue="color", s=40)

相关问题 更多 >

    热门问题