04 2022 档案

缺失值处理
摘要:from sklearn.impute import SimpleImputer import numpy as np def im(): """ 缺失值处理 :return:NOne """ # NaN, nan im = SimpleImputer( strategy='mean') data 阅读全文

posted @ 2022-04-14 11:08 萌新python 阅读(43) 评论(0) 推荐(0)