gpt4 book ai didi

python - 从列中选择的数值数量的平均值

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

从年龄列中,我想选择 (15 & 45) 之间的年龄组,然后用年龄组 (15 & 45) 的平均值替换缺失值

[IN]: train['Age'].isnull().value_counts()
[OUT]:
False 714
True 177
Name: Age, dtype: int64

如何编写这段代码?

大多数解决方案都引用基于 bool 的输出

train['Age'].fillna((train['Age'] > 15 & train['Age'] < 45).mean())

TypeError: cannot compare a dtyped [float64] array with a scalar of type [bool]

train['Age'].fillna((train['Age'] > 15 & train['Age'] < 45).mean())

年龄组分布在 1 岁到 80 岁之间从年龄列中,我想选择 (15 & 45) 之间的年龄组,然后用年龄组 (15 & 45) 的平均值替换缺失值

最佳答案

Age 列添加括号和 loc:

m = train.loc[(train['Age'] > 15) & (train['Age'] < 45), 'Age'].mean()

或者使用Series.between :

m = train.loc[train['Age'].between(15, 45, inclusive=False), 'Age'].mean()

最后替换缺失值:

train['Age'] = train['Age'].fillna(m)

关于python - 从列中选择的数值数量的平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57721992/

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