博客
关于我
【数据分析与预处理】 ---- 数据的提取与筛选
阅读量:328 次
发布时间:2019-03-04

本文共 707 字,大约阅读时间需要 2 分钟。

读取数据

使用 pd.read_csv 读取数据文件:

data = pd.read_csv("G:\Projects\pycharmeProject\大数据比赛\data\mysql.csv")print(data.shape)

数据的提取与筛选

增加某一列

以原数据的索引添加列
data['index'] = data.index
以国家数据添加列
data['country'] = data['国家']

删除特定列

data_drop = data.drop(columns='index')

删除特定行

data_drop_index = data.drop(index=1, axis=1)data_drop_mulIndex = data.drop(index=[1,2,3,4,5], axis=1)

删除特定值的记录

方法一:基于索引删除
data_condition = data['城市'] == '阿坝'data_target = data.loc[data_condition]data_target_index = data_target.indexdata_drop_target_index = data.drop(index=data_target_index, axis=1)
方法二:使用 loc~ 进行筛选
data_condition = data['城市'].isin(['阿坝'])data_without_target = data.loc[~data_condition]

结论

通过以上方法,我们可以对数据进行必要的提取和筛选,确保数据的完整性和准确性。

转载地址:http://bzeq.baihongyu.com/

你可能感兴趣的文章
PowerShell 批量签入SharePoint Document Library中的文件
查看>>
Powershell 自定义对象小技巧
查看>>
pytorch从预训练权重加载完全相同的层
查看>>
PowerShell~发布你的mvc网站
查看>>
PowerShell使用详解
查看>>
Powershell制作Windows安装U盘
查看>>
powershell命令
查看>>
Powershell如何查看本地公网IP
查看>>
pytorch从csv加载自定义数据模板
查看>>
powershell对txt文件的服务器进行ping操作
查看>>
powershell常用
查看>>
PowerShell操作XML遇到的问题
查看>>
PowerShell攻击工具Empire实战
查看>>
PowerShell攻击工具Nishang实战
查看>>
PowerShell攻击工具PowerSploit实战
查看>>
Powershell管理系列(四)Lync server 2013 批量启用语音及分配分机号
查看>>
PowerShell脚本运行完 不要马上关闭用什么命令可以停留窗口窗口
查看>>
PowerShell远程连接到Windows
查看>>
power(8) identity
查看>>
POW的重力之美
查看>>