1. 程式人生 > >使用sklearn中preprocessing.Imputer實現對缺失值的處理

使用sklearn中preprocessing.Imputer實現對缺失值的處理

rep tran miss imp RoCE fit val 實現 pro

from sklearn import preprocessing import numpy as np X = [[1, 2], [np.nan, 4], [2, 6]] y = [[np.nan, 4], [1, 3], [2, 4]] imp = preprocessing.Imputer(missing_values=‘Nan‘, strategy=‘mean‘) imp.fit(X) print(imp.transform(X)) print(imp.transform(y))

使用sklearn中preprocessing.Imputer實現對缺失值的處理