pandas中Loc vs. iloc vs. ix vs. at vs. iat?
Posted coskaka
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas中Loc vs. iloc vs. ix vs. at vs. iat?相关的知识,希望对你有一定的参考价值。
loc: only work on index
iloc: work on position
ix: You can get data from dataframe without it being in the index
at: get scalar values. It‘s a very fast loc
iat: Get scalar values. It‘s a very fast iloc
以上是关于pandas中Loc vs. iloc vs. ix vs. at vs. iat?的主要内容,如果未能解决你的问题,请参考以下文章
python:pandas之DataFrame取行列(df.loc(),df.iloc())以及索引
快速学会pandas中Dataframe索引.ix,.iloc,.loc的使用以及区别