码迷,mamicode.com
首页 > 其他好文 > 详细

数据预处理

时间:2018-03-28 18:52:40      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:UI   style   gpo   预处理   个数   color   isnull   bsp   www.   

转发一篇数据处理方法详尽的文章

https://www.cnblogs.com/laogui/articles/5759246.html

 

分析缺失数据:

df.isnull()      #判断缺失的元素

df.isnull().any()       #判断有缺失的列

missing = df.columns[df.isnull().any()].tolist()
df[missing].isnull().sum()       #统计每列缺失值的个数

 

数据预处理

标签:UI   style   gpo   预处理   个数   color   isnull   bsp   www.   

原文地址:https://www.cnblogs.com/sssm/p/8665222.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!