imp = Imputer(strategy='median') imp.fit_transform(data) array([[ 1. , 3.5, 2. ], [ 2. , 3. , 2. ], [-1. , 4. , 2. ]]) ...
確定! 回上一頁