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

你可能感兴趣的文章
Prometheus 监控系统简介
查看>>
Prometheus 配置详解
查看>>
Prometheus 采集器使用详解
查看>>
Prometheus 黑盒监控实战
查看>>
prometheus+alertmanager+grafana监控部署教程
查看>>
Prometheus+Grafana构建智能化Kubernetes监控系统实战
查看>>
Prometheus+SpringBoot应用监控全过程详解
查看>>
Prometheus+SpringBoot应用监控全过程详解
查看>>
prometheus安装
查看>>
Prometheus实战教程:监控Kafka消息
查看>>
Prometheus实战教程:监控mysql数据库
查看>>
Prometheus实战教程:监控Nginx状态
查看>>
prometheus常用exporter下载地址大全
查看>>
Prometheus快速搭建与监控Linux系统实战
查看>>
prometheus报警与恢复告警的格式
查看>>
Pytorch中安装 torch_geometric 详细图文操作(全)
查看>>
prometheus监控docker容器实战
查看>>
Prometheus监控k8s集群使用邮箱和微信告警!
查看>>
Prometheus监控mysq数据库实战
查看>>
prometheus监控nginx实战
查看>>