带有连接点的群图

发布于 2025-01-13 00:03:02 字数 994 浏览 1 评论 0原文

我尝试使用箱线图与群图以及连接数据点的线相结合来跟踪数据帧内的变化。

到目前为止,我只能使用以下代码将箱线图与群图结合起来:

import seaborn as sns
from itertools import cycle

import numpy as np
import pandas as pd

#create random dataframe with 4 conditions
df = pd.DataFrame(data = np.random.random(size=(4,4)), columns = ['A','B','C','D'])
datapoints=pd.melt(df)

#add IDs
ID = cycle(["1","2","3", "4"])
datapoints['ID'] = [next(ID) for IDs in range(len(datapoints))]

#plot values 
sns.boxplot(x="variable", y="value", data=datapoints)
sns.swarmplot(x="variable", y="value", data=datapoints, color=".25")

结果是这样的: 输入图片这里的描述

我想要做的是跟踪每个 ID 连接 A、B、C 和 D 上的单个点的变化。

这样我就可以跟踪 ID 1 在 4 个条件下的表现。像这样的东西:

在此处输入图像描述

I'm try to keep track of changes within a dataframe using a boxplot combined with a swarmplot, and lines connecting data points.

So far I only managed to combine the boxplot with the swarmplot, using this code:

import seaborn as sns
from itertools import cycle

import numpy as np
import pandas as pd

#create random dataframe with 4 conditions
df = pd.DataFrame(data = np.random.random(size=(4,4)), columns = ['A','B','C','D'])
datapoints=pd.melt(df)

#add IDs
ID = cycle(["1","2","3", "4"])
datapoints['ID'] = [next(ID) for IDs in range(len(datapoints))]

#plot values 
sns.boxplot(x="variable", y="value", data=datapoints)
sns.swarmplot(x="variable", y="value", data=datapoints, color=".25")

And the result is this:
enter image description here

Waht I would like to do is to keep track of changes connecting the single dots across A, B, C and D per ID.

This way I could follow the performance of for example ID 1 across the 4 conditions. Something like this:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来世叙缘 2025-01-20 00:03:02

不确定我是否理解这个问题,因为箱线图用于聚合信息而不是显示所有值,但如果您想显示所有点:

sns.lineplot(x="variable", y="value", hue='ID', data=datapoints,
             estimator=None, legend=False)

或:

sns.lineplot(data=df.T, legend=False)

在此处输入图像描述

要具有黑线,使用:

pal = sns.color_palette(['black'], df.shape[1])
sns.lineplot(x="variable", y="value", hue='ID', data=datapoints,
             estimator=None, legend=False, palette=pal)

在此处输入图像描述

Not sure I understood the question as boxplot are used to aggregate information rather than showing all values, but if you want to show all points:

sns.lineplot(x="variable", y="value", hue='ID', data=datapoints,
             estimator=None, legend=False)

or:

sns.lineplot(data=df.T, legend=False)

enter image description here

To have black lines, use:

pal = sns.color_palette(['black'], df.shape[1])
sns.lineplot(x="variable", y="value", hue='ID', data=datapoints,
             estimator=None, legend=False, palette=pal)

enter image description here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文