我想创建一个没有目标的浮动特征数据框,以便我可以进一步操作它们。
我试过了:
float_col = data.select_dtypes('float').drop(['TARGET'], axis=1, inplace=True)
# Remove sparse numerical features
for f in float_col:
if data[f].isnull().sum() / data.shape[0] > 0.1667: del data[f] #Remove above 1/6 of NANs
...返回:
TypeError: 'NoneType' 对象不可迭代
我也试过这样做:
float_col = data.select_dtypes('float').drop(['TARGET'], axis=1, inplace=True).update()
...返回:
AttributeError: 'NoneType' 对象没有属性 'update'
我相信这个问题是由目标下降引起的。
慕娘9325324
相关分类