如何基于另一列填充熊猫中的数字缺失值

时间:2020-06-11 06:15:06

标签: python pandas numpy dataframe missing-data

在这里,我需要在熊猫中插入数字列

样本数据:

data class TotallyMadeUpClass(val username: String) {
    init {
        require(username.length > 10) { "Length must be greater than 10" }
        // ...
    }
}

此处“年龄”和“服务时间”列都高度相关。 根据以下条件,我需要估算缺失的值

Age   Time_of_service

42       4

24       5

nan      27

26       4

31       5

54       21

21       2

Nan      32

45       18

19       0

65      35

nan       3
Time_of_Service >30
age = 60
Time_of_Service in (20,30)
age = 45
Time_of_Service in (10,20)
age = 35

如何使用Python根据上述条件估算缺失值?

1 个答案:

答案 0 :(得分:0)

使用cut进行装箱,然后将输出转换为整数,并用Series.fillna替换Age列中的缺失值:

bins = [0,10,20,30,np.inf]
labels = [25,35,45,60]
new = pd.cut(df['Time_of_service'], bins=bins, labels=labels, include_lowest=True)
df['Age'] = df['Age'].fillna(new.astype(int))
print (df)

     Age  Time_of_service
0   42.0                4
1   24.0                5
2   45.0               27
3   26.0                4
4   31.0                5
5   54.0               21
6   21.0                2
7   60.0               32
8   45.0               18
9   19.0                0
10  65.0               35
11  25.0                3