Bug fix
parent
1ad25bb572
commit
de15a52dba
|
@ -85,7 +85,7 @@ def straw_cleaning(sensor_data_files, provider):
|
|||
impute_w_sn2 = [col for col in features.columns if "homelabel" in col]
|
||||
features[impute_w_sn2] = features[impute_w_sn2].fillna(1) # Special case of imputation - nominal/ordinal value
|
||||
|
||||
impute_w_sn3 = [col for col features.columns if "loglocationvariance" in col]
|
||||
impute_w_sn3 = [col for col in features.columns if "loglocationvariance" in col]
|
||||
features[impute_w_sn2] = features[impute_w_sn2].fillna(-1000000) # Special case of imputation - nominal/ordinal value
|
||||
|
||||
|
||||
|
|
|
@ -80,7 +80,7 @@ def straw_cleaning(sensor_data_files, provider, target):
|
|||
impute_w_sn2 = [col for col in features.columns if "homelabel" in col]
|
||||
features[impute_w_sn2] = features[impute_w_sn2].fillna(1) # Special case of imputation - nominal/ordinal value
|
||||
|
||||
impute_w_sn3 = [col for col features.columns if "loglocationvariance" in col]
|
||||
impute_w_sn3 = [col for col in features.columns if "loglocationvariance" in col]
|
||||
features[impute_w_sn2] = features[impute_w_sn2].fillna(-1000000) # Special case of imputation - loglocation
|
||||
|
||||
# Impute selected phone features with 0
|
||||
|
|
Loading…
Reference in New Issue