python [熊猫] .iloc和.loc

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python [熊猫] .iloc和.loc相关的知识,希望对你有一定的参考价值。

df = pd.DataFrame({
  "a": [1, 2 ,3],
  "b": [4, 5, 6],
  "c": [7, 8, 9],
})

df.set_index("b", inplace = True, drop = True)

print df.iloc[1]  # [2, 5, 8]
print df.loc[1]  # KeyError
print df.loc[4]  # [1, 4, 7]

以上是关于python [熊猫] .iloc和.loc的主要内容,如果未能解决你的问题,请参考以下文章

熊猫 iloc 和 loc & multiindex

熊猫 iloc 返回与 loc 不同的范围 [重复]

python pandas Data.Frame -- iloc和loc以及icol

关于python中loc和iloc方法

python:pandas之DataFrame取行列(df.loc(),df.iloc())以及索引

有没有办法将字符串变量传递给 python .loc/.iloc?