python 处理丢失的数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 处理丢失的数据相关的知识,希望对你有一定的参考价值。

# imputation
threshold = 0.7
#Dropping columns with missing value rate higher than threshold
data = data[data.columns[data.isnull().mean() < threshold]]

#Dropping rows with missing value rate higher than threshold
data = data.loc[data.isnull().mean(axis=1) < threshold]

# categorical imputation
#Max fill function for categorical columns
data['column_name'].fillna(data['column_name'].value_counts()
.idxmax(), inplace=True)

以上是关于python 处理丢失的数据的主要内容,如果未能解决你的问题,请参考以下文章

6 DataFrame处理丢失数据--数据清洗

Python - 如何在遍历字典列表时处理丢失的键? [复制]

Python--字符编码文字处理函数

基于 TCP 的 Python SysLogHandler:处理连接丢失

Pandas处理缺失的数据

PySerial 丢失数据