详谈Pandas中iloc和loc以及ix的区别
作者:Modozil 时间:2022-01-30 00:52:49
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
来源:https://blog.csdn.net/niuniuyuh/article/details/76650904
标签:Pandas,iloc,loc,ix
0
投稿
猜你喜欢
CSS3中的box-sizing属性
2010-04-05 21:52:00
mysql8.0.20数据目录迁移的方法
2024-01-25 04:41:18
月影:function扩展
2008-05-19 12:27:00
Pycharm中出现ImportError:DLL load failed:找不到指定模块的解决方法
2021-09-04 06:14:32
Python Logging 日志记录入门学习
2022-05-17 14:48:39
Tensorflow中的dropout的使用方法
2021-04-22 01:21:58
php查询mysql数据库并将结果保存到数组的方法
2023-07-20 17:47:32
详解如何利用Python绘制科赫曲线
2023-05-02 15:26:42
PHP中的MYSQL常用函数
2010-09-30 14:49:00
基于Python的EasyGUI学习实践
2021-09-05 10:54:55
pyqt5 QProgressBar清空进度条的实例
2022-11-28 03:04:08
SQL Server数据库附加失败的解决办法
2024-01-25 05:38:23
python 识别图片中的文字信息方法
2022-06-06 15:32:05
python实现网络五子棋
2021-10-16 23:58:17
python原始套接字编程示例分享
2021-10-09 19:00:07
使用python爬虫获取黄金价格的核心代码
2023-11-03 22:55:28
Python使用configparser读取ini配置文件
2023-11-02 04:48:22
python基于openpyxl生成excel文件
2022-08-03 03:10:47
在Django model中设置多个字段联合唯一约束的实例
2021-02-09 22:04:59
Navicat for SQLite导入csv中文数据的方法
2024-01-22 18:56:26