python中loc是什麼

liuxuhui發表於2021-09-11

python中loc是什麼

loc中的資料是列名,是字串,所以前後都要取;iloc中資料是int整型,所以是Python預設的前閉後開

loc函式

構建資料集df

import pandas as pd  
df = pd.DataFrame([  
            ['green', 'M', 10.1, 'class1'],   
            ['red', 'L', 13.5, 'class2'],   
            ['blue', 'XL', 15.3, 'class1']])  
print (df)    
# 資料集為以下內容,所有操作均對df進行
       0   1     2       3
0  green   M  10.1  class1
1    red   L  13.5  class2
2   blue  XL  15.3  class1

loc函式主要透過行標籤索引行資料,劃重點,標籤!標籤!標籤!
loc[1] 選擇行標籤是1的(從0、1、2、3這幾個行標籤中)

In[1]:    df.loc[1]
Out[1]: 0       red
1         L
2      13.5
3    class2

推薦學習《》。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/756/viewspace-2834827/,如需轉載,請註明出處,否則將追究法律責任。

相關文章