pandas (locilocix)的区别

Posted supremeboy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas (locilocix)的区别相关的知识,希望对你有一定的参考价值。

loc:通过行标签索引数据

iloc:通过行号索引行数据

ix:通过行标签或行号索引数据(基于loc和iloc的混合)

代码:

import pandas as pd

data = [[1, 2, 3], [4, 5, 6]]
index = [a, b]
column = [left, center, right]

table = pd.DataFrame(data=data, index=index, columns=column)

print(table)

print("----------" + "loc()" + "------------")
print(table.loc[a])                           # 获取行标签是"a"的一行数据

print("----------" + "iloc()" + "------------")
print(table.iloc[0])                          # 获取索引值为"0"的一行数据

print("----------" + "ix()" + "------------")
print(table.ix[0])                          # 无论输入的是"a"还是"0"都是获取第一行的数据

print("----------" + "ix()" + "------------")
print(table.ix[a])

结果:

/usr/local/bin/python3.7 /Users/xiaolata/PycharmProjects/Qlearning/pand_test/panda02.py
   left  center  right
a     1       2      3
b     4       5      6
----------loc()------------
left      1
center    2
right     3
Name: a, dtype: int64
----------iloc()------------
left      1
center    2
right     3
Name: a, dtype: int64
----------ix()------------
left      1
center    2
right     3
Name: a, dtype: int64
----------ix()------------
left      1
center    2
right     3
Name: a, dtype: int64

以上是关于pandas (locilocix)的区别的主要内容,如果未能解决你的问题,请参考以下文章

pandas (locilocix)的区别

pandas数据索引之locilocix详解及实例

locilocix 区别

这两个代码片段有啥区别?

pandas GroupBy上的方法apply:一般性的“拆分-应用-合并”

这两个代码片段之间有区别吗?如果有,那又如何? [复制]