gpt4 book ai didi

python - Seaborn.countplot : order categories by count

转载 作者:IT老高 更新时间:2023-10-28 20:43:53 24 4
gpt4 key购买 nike

我知道 seaborn.countplot具有属性 order 可以设置来确定类别的顺序。但我想做的是让类别按降序排列。我知道我可以通过手动计算计数来完成此操作(在原始数据帧上使用 groupby 操作等),但我想知道 seaborn.countplot 是否存在此功能>。令人惊讶的是,我在任何地方都找不到这个问题的答案。

最佳答案

此功能未内置于 seaborn.countplot据我所知 - order 参数只接受类别的字符串列表,并将排序逻辑留给用户。

这对 value_counts() 来说并不难。前提是您有一个 DataFrame。例如,

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

sns.set(style='darkgrid')

titanic = sns.load_dataset('titanic')
sns.countplot(x = 'class',
data = titanic,
order = titanic['class'].value_counts().index)
plt.show()

enter image description here

关于python - Seaborn.countplot : order categories by count,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46623583/

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