pandas使用loc函数iloc函数索引单个数据列,但是生成的数据对象是dataframe而不是Series对象(selecting a single column in dataframe)
Posted Data+Science+Insight
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas使用loc函数iloc函数索引单个数据列,但是生成的数据对象是dataframe而不是Series对象(selecting a single column in dataframe)相关的知识,希望对你有一定的参考价值。
pandas使用loc函数、iloc函数索引单个数据列,但是生成的数据对象是dataframe而不是Series对象(selecting a single column in dataframe and result is a dataframe)
目录
以上是关于pandas使用loc函数iloc函数索引单个数据列,但是生成的数据对象是dataframe而不是Series对象(selecting a single column in dataframe)的主要内容,如果未能解决你的问题,请参考以下文章
pandas使用方括号[]或者loc函数基于列名称或者列名称列表索引dataframe中的单个数据列或者多个数据列(accessing columns of a dataframe)
python:pandas之DataFrame取行列(df.loc(),df.iloc())以及索引
pandas使用read_csv函数读取csv数据index_col参数指定作为行索引的数据列索引列表形成复合(多层)行索引loc基于单个行索引元组索引单行数据(index tuple)