首页 > Python资料 博客日记
Python数据清理
2023-08-08 15:45:21Python资料围观259次
数据丢失在现实生活中是一个问题。 机器学习和数据挖掘等领域由于数据缺失导致数据质量差,因此在模型预测的准确性方面面临严峻的问题。 在这些领域,缺失值处理是使模型更加准确和有效的关键。
何时以及为什么数据丢失?
让我们考虑一个产品的在线调查。 很多时候,人们不会分享与他们有关的所有信息。 很少有人分享他们的经验,但他们没有多久使用该产品; 很少有人分享他们使用产品的时间,他们的经验,但不是他们的联系信息。 因此,以某种方式或其他方式,一部分数据总是会丢失,这在实时中非常普遍。
现在来看看如何处理使用Pandas的缺失值(如NA
或NaN
)。
# import the pandas library
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(5, 3), index=['a', 'c', 'e', 'f',
'h'],columns=['one', 'two', 'three'])
df = df.reindex(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
print (df)
它将输出如下结果 -
one two three
a 0.077988 0.476149 0.965836
b NaN NaN NaN
c -0.390208 -0.551605 -2.301950
d NaN NaN NaN
e -2.000303 -0.788201 1.510072
f -0.930230 -0.670473 1.146615
g NaN NaN NaN
h 0.085100 0.532791 0.887415
使用reindexing
,创建了一个缺失值的DataFrame
。 在输出中,NaN
表示不是数字。
检查缺失值
为了更容易地检测缺失值(以及跨越不同的数组dtype
),Pandas提供了isnull()
和notnull()
函数,它们也是Series和DataFrame对象的方法 -
示例
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(5, 3), index=['a', 'c', 'e', 'f',
'h'],columns=['one', 'two', 'three'])
df = df.reindex(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
print (df['one'].isnull())
它将输出如下结果 -
a False
b True
c False
d True
e False
f False
g True
h False
Name: one, dtype: bool
清理/填充缺少数据
Pandas提供了各种方法来清除缺失值。 fillna
函数可以通过几种方式用非空数据“填充”NA值,我们在后面的章节中将解释说明。
用标量值替换NaN
以下程序显示了如何将“NaN”替换为“0”。
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(3, 3), index=['a', 'c', 'e'],columns=['one',
'two', 'three'])
df = df.reindex(['a', 'b', 'c'])
print (df)
print ("NaN replaced with '0':")
print (df.fillna(0))
它将输出如下结果 -
one two three
a -0.576991 -0.741695 0.553172
b NaN NaN NaN
c 0.744328 -1.735166 1.749580
NaN replaced with '0':
one two three
a -0.576991 -0.741695 0.553172
b 0.000000 0.000000 0.000000
c 0.744328 -1.735166 1.749580
在这里,填充零值; 相反,我们也可以填写任何其他值。
正向和反向填充NA
使用ReIndexing章节讨论的填充概念,这里将学习如何填补缺失的值。
方法 | 操作 |
---|---|
pad/fill |
向前填充方法 |
bfill/backfill |
向后填充方法 |
示例代码
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(5, 3), index=['a', 'c', 'e', 'f',
'h'],columns=['one', 'two', 'three'])
df = df.reindex(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
print (df.fillna(method='pad'))
执行上面示例代码,得到以下输出结果 -
one two three
a 0.077988 0.476149 0.965836
b 0.077988 0.476149 0.965836
c -0.390208 -0.551605 -2.301950
d -0.390208 -0.551605 -2.301950
e -2.000303 -0.788201 1.510072
f -0.930230 -0.670473 1.146615
g -0.930230 -0.670473 1.146615
h 0.085100 0.532791 0.887415
丢失缺失值
如果只想排除缺少的值,则使用dropna
函数和axis
参数。 默认情况下,axis = 0
,即沿着一行行查找,这意味着如果行内的任何值是NA
,那么排除整行。
示例
import pandas as pd
import numpy as np
df = pd.DataFrame(np.random.randn(5, 3), index=['a', 'c', 'e', 'f',
'h'],columns=['one', 'two', 'three'])
df = df.reindex(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
print (df.dropna())
它将输出如下结果 -
one two three
a 0.077988 0.476149 0.965836
c -0.390208 -0.551605 -2.301950
e -2.000303 -0.788201 1.510072
f -0.930230 -0.670473 1.146615
h 0.085100 0.532791 0.887415
替换丢失(或)通用值
很多时候,我们必须用一些特定的值替换一个通用值。 可以通过应用替换方法来实现这一点。
用标量值替换NA
是fillna()
函数的等效行为。
示例代码
import pandas as pd
import numpy as np
df = pd.DataFrame({'one':[10,20,30,40,50,2000],
'two':[1000,0,30,40,50,60]})
print (df.replace({1000:10,2000:60}))
执行上面示例代码,得到以下结果 -
one two
0 10 10
1 20 0
2 30 30
3 40 40
4 50 50
5 60 60
标签:
上一篇:Python os.write()方法
下一篇:Python泊松分布
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj