美文网首页
iloc & loc

iloc & loc

作者: cure_py | 来源:发表于2019-03-12 14:48 被阅读0次

    iloc & loc

    loc:works on labels in the index.
    iloc:works on the positions in the index (so it only takes integers).

    也就是说loc是根据index来索引,比如下边的df定义了一个index,那么loc就根据这个index来索引对应的行。iloc并不是根据index来索引,而是根据行号来索引,行号从0开始,逐次加1。

    注意:
    df_new.iloc[0:4]
    iloc基于索引位来选取数据集,0:4就是选取 0,1,2,3这四行,需要注意的是这里是前闭后开集合

    相关文章

      网友评论

          本文标题:iloc & loc

          本文链接:https://www.haomeiwen.com/subject/xxfnpqtx.html