博客
关于我
【数据分析与预处理】 ---- 数据的提取与筛选
阅读量: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/

你可能感兴趣的文章
poj 3262 Protecting the Flowers 贪心
查看>>
poj 3264(简单线段树)
查看>>
Qt笔记——布局管理三件套分割窗口、停靠窗口和堆栈窗口
查看>>
poj 3277 线段树
查看>>
POJ 3349 Snowflake Snow Snowflakes
查看>>
POJ 3411 DFS
查看>>
poj 3422 Kaka's Matrix Travels (费用流 + 拆点)
查看>>
Qt笔记——官方文档全局定义(二)Functions函数
查看>>
POJ 3468 A Simple Problem with Integers
查看>>
poj 3468 A Simple Problem with Integers 降维线段树
查看>>
poj 3468 A Simple Problem with Integers(线段树 插线问线)
查看>>
poj 3485 区间选点
查看>>
poj 3518 Prime Gap
查看>>
poj 3539 Elevator——同余类bfs
查看>>
Qt笔记——官方文档全局定义(三)Macros宏
查看>>
poj 3628 Bookshelf 2
查看>>
Qt笔记——官方文档全局定义(一)Types数据类型
查看>>
POJ 3670 DP LIS?
查看>>
POJ 3683 Priest John's Busiest Day (算竞进阶习题)
查看>>
POJ 3988 Selecting courses
查看>>