gpt4 book ai didi

python - Pandas Value_Counts 选择

转载 作者:太空宇宙 更新时间:2023-11-03 14:49:48 24 4
gpt4 key购买 nike

下面是-

的输出
df['x'].value_counts()

-1 266551
1 172667
0 155994

我想计算除值 -1 之外的计数的最大值。

在这种情况下,答案将是 172667。

如何从中删除 -1 的值并选择其他值的最大值?

最佳答案

使用drop + max :

df['x'].value_counts().drop(-1).max()

示例:

s = pd.Series([266551,172667,155994], index=[-1,1,0])
print (s)
-1 266551
1 172667
0 155994
dtype: int64

print (s.drop(-1).max())
172667

关于python - Pandas Value_Counts 选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46702755/

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