pandas中index索引功能是什么
pandas的索引對象可以用來保存坐標軸標簽和其它元數(shù)據(jù),是使用過程中必要的參與對象,那pandas中index索引功能是什么呢?pandas中index索引可以輕松的讀取數(shù)據(jù),更方便的數(shù)據(jù)查詢,使用index查詢的時候可以獲得性能提升。
一、index索引特點
更方便的數(shù)據(jù)查詢,使用index查詢的時候可以獲得性能提升;
自動的數(shù)據(jù)對齊功能;
更多更強大的數(shù)據(jù)結(jié)構(gòu)支持。
二、index索引用途
1、使用index讀取數(shù)據(jù)
importpandasaspd
df=pd.read_csv("./datas/ml-latest-small/ratings.csv")
df.count()#記錄每一列的數(shù)目
2、使用index查詢數(shù)據(jù)
#drop==False,讓索引列還保持在column
df.set_index("userId",inplace=True,drop=False)
df.head()
df.index
Int64Index([1,1,1,1,1,1,1,1,1,1,
...
610,610,610,610,610,610,610,610,610,610],
dtype='int64',name='userId',length=100836)
#使用index的查詢方法
df.loc[500].head(5)
以上就是pandas中index索引的相關(guān)介紹,希望能幫助你理解喲~更多Python學習教程請關(guān)注IT培訓機構(gòu):千鋒教育。