gpt4 book ai didi

python - seaborn swarmplot 中的水平图

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

情况
我有以下 Pandas 数据集:

|user_id|total|is_fat|
|-------|-----|------|
|1 |100 |1 |
|2 |150 |0 |
|3 |400 |1 |
|4 |500 |1 |
|5 |10 |0 |

其中total的元素是整数,is_fat的元素是字符串。

我用 df 表示上面的数据集。

然后运行以下代码:

import seaborn as sos
sns.swarmplot(x = 'total', y ='is_fat', data = df)

现在我期望的图表如下所示: enter image description here

问题但是,输出图如下:

enter image description here

为什么?

搜索
如果我将“1”转换为“fat”,将“0”转换为“not_fat”,然后我得到预期的图表。

最佳答案

我模拟了一些数据并将 is_fat 更改为分类数据,如下所示:

import seaborn as sns
import pandas as pd
import numpy as np

df = pd.DataFrame({"total":abs(np.random.randn(100)), "is_fat": [1,0]*50})
df.is_fat = df.is_fat.astype("category")
sns.swarmplot(x = 'total', y ='is_fat', data = df)

这产生了下图: enter image description here

希望对您有所帮助。

关于python - seaborn swarmplot 中的水平图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55114591/

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