详谈Pandas中iloc和loc以及ix的区别


Posted in Python onJune 08, 2018

Pandas库中有iloc和loc以及ix可以用来索引数据,抽取数据。但是方法一多也容易造成混淆。下面将一一来结合代码说清其中的区别。

1. iloc和loc的区别:

iloc主要使用数字来索引数据,而不能使用字符型的标签来索引数据。而loc则刚好相反,只能使用字符型标签来索引数据,不能使用数字来索引数据,不过有特殊情况,当数据框dataframe的行标签或者列标签为数字,loc就可以来其来索引。

好,先上代码,先上行标签和列标签都为数字的情况。

import pandas as pd
import numpy as np
a = np.arange(12).reshape(3,4)
print a
>>>
[[ 0 1 2 3]
 [ 4 5 6 7]
 [ 8 9 10 11]]
df = pd.DataFrame(a)
print df
>>>
 0 1 2 3
0 0 1 2 3
1 4 5 6 7
2 8 9 10 11
print df.loc[0]
>>>
0 0
1 1
2 2
3 3
Name: 0, dtype: int32
print df.iloc[0]
0 0
1 1
2 2
3 3
Name: 0, dtype: int32
print df.loc[:,[0,3]]
 0 3
0 0 3
1 4 7
2 8 11
print df.iloc[:,[0,3]]
 0 3
0 0 3
1 4 7
2 8 11

接下来是把行标签[0, 1, 2]改成['a', 'b', 'c'],则成这样了。

df.index = ['a','b','c'] 
print df 
>>> 
 0 1 2 3 
a 0 1 2 3 
b 4 5 6 7 
c 8 9 10 11 
print df.loc[0] 
# TypeError: cannot do label indexing on <class 'pandas.core.indexes.base.Index'> with these indexers [0] of <type 'int'> 
print df.iloc[0] 
>>> 
0 0 
1 1 
2 2 
3 3 
Name: a, dtype: int32 
print df.iloc['a'] # TypeError: cannot do positional indexing on <class 'pandas.core.indexes.base.Index'> with these indexers [a] of <type 'str'> 
print df.loc['a'] # 正确 
>>> 
0 0 
1 1 
2 2 
3 3 
Name: a, dtype: int32

同样地,把列标签[0, 1, 2, 3]改成['A', 'B, 'C', 'D'],则成这样了。

df.columns = ['A','B','C','D']
print df
>>>
 A B C D
a 0 1 2 3
b 4 5 6 7
c 8 9 10 11
print df.loc[:,'A']
>>>
a 0
b 4
c 8
Name: A, dtype: int32
print df.iloc[:,'A'] # ValueError: Location based indexing can only have [integer, integer slice (START point is INCLUDED, END point is EXCLUDED), listlike of integers, boolean array] types

2.ix是一种混合索引,字符型标签和整型数据索引都可以。

print df.ix[0]
>>>
A 0
B 1
C 2
D 3
Name: a, dtype: int32
print df.ix['a']
>>>
A 0
B 1
C 2
D 3
Name: a, dtype: int32
print df.ix[:,0]
>>>
a 0
b 4
c 8
Name: A, dtype: int32
print df.ix[:,'A']
>>>
a 0
b 4
c 8
Name: A, dtype: int32

以上这篇详谈Pandas中iloc和loc以及ix的区别就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python批量修改文件后缀的方法
Jan 26 Python
Python实例一个类背后发生了什么
Feb 09 Python
Python2.7简单连接与操作MySQL的方法
Apr 27 Python
Python判断变量是否为Json格式的字符串示例
May 03 Python
Python装饰器原理与简单用法实例分析
Apr 29 Python
python实现超市扫码仪计费
May 30 Python
python定时按日期备份MySQL数据并压缩
Apr 19 Python
python自动化之Ansible的安装教程
Jun 13 Python
Python求正态分布曲线下面积实例
Nov 20 Python
python学生信息管理系统实现代码
Dec 17 Python
Python实现异步IO的示例
Nov 05 Python
pycharm无法安装cv2模块问题
May 20 Python
python实现人人自动回复、抢沙发功能
Jun 08 #Python
利用Python写一个爬妹子的爬虫
Jun 08 #Python
python os用法总结
Jun 08 #Python
Python DataFrame 设置输出不显示index(索引)值的方法
Jun 07 #Python
浅谈Pandas 排序之后索引的问题
Jun 07 #Python
pandas.dataframe中根据条件获取元素所在的位置方法(索引)
Jun 07 #Python
python pandas 对series和dataframe的重置索引reindex方法
Jun 07 #Python
You might like
一个从别的网站抓取信息的例子(域名查询)
2006/10/09 PHP
PHP SQLite类
2009/05/07 PHP
PHP实现GIF图片验证码
2015/11/04 PHP
CodeIgniter辅助之第三方类库third_party用法分析
2016/01/20 PHP
Laravel框架实现的记录SQL日志功能示例
2018/06/19 PHP
PHP使用标准库spl实现的观察者模式示例
2018/08/04 PHP
laravel 输出最后执行sql 附:whereIn的使用方法
2019/10/10 PHP
isArray()函数(JavaScript中对象类型判断的几种方法)
2009/11/26 Javascript
浅谈JavaScript Date日期和时间对象
2014/12/29 Javascript
JavaScript实现文本框中默认显示背景图片在获得焦点后消失的方法
2015/07/01 Javascript
JavaScript获取当前运行脚本文件所在目录的方法
2016/02/03 Javascript
JavaScript代码生成PDF文件的方法
2016/02/26 Javascript
解决微信浏览器Javascript无法使用window.location.reload()刷新页面
2016/06/21 Javascript
功能强大的Bootstrap组件(结合js)
2016/08/03 Javascript
JavaScript仿支付宝6位数字密码输入框
2016/12/29 Javascript
vue中使用refs定位dom出现undefined的解决方法
2017/12/21 Javascript
微信小程序:数据存储、传值、取值详解
2019/05/07 Javascript
优雅的使用javascript递归画一棵结构树示例代码
2019/09/22 Javascript
jQuery实现聊天对话框
2020/02/08 jQuery
如何在Django中添加没有微秒的 DateTimeField 属性详解
2019/01/30 Python
python如何解析配置文件并应用到项目中
2019/06/27 Python
使用python 计算百分位数实现数据分箱代码
2020/03/03 Python
Python函数参数定义及传递方式解析
2020/06/10 Python
Python爬取某平台短视频的方法
2021/02/08 Python
HTML5 移动页面自适应手机屏幕四类方法总结
2017/08/17 HTML / CSS
浅析canvas元素的html尺寸和css尺寸对元素视觉的影响
2019/07/22 HTML / CSS
加工操作管理制度
2014/01/19 职场文书
宣传普通话标语
2014/06/27 职场文书
竞聘自述材料
2014/08/25 职场文书
继承权公证书范本
2015/01/23 职场文书
匿名信格式范文
2015/05/27 职场文书
PostgreSQL存储过程实用脚本(二):创建函数入门
2021/04/05 PostgreSQL
TypeScript中条件类型精读与实践记录
2021/10/05 Javascript
Python实现抖音热搜定时爬取功能
2022/03/16 Python
NASA 机智号火星直升机拍到了毅力号设备碎片
2022/04/29 数码科技
MySQL的意向共享锁、意向排它锁和死锁
2022/07/15 MySQL