您好,登錄后才能下訂單哦!
iloc
是 pandas 庫中 DataFrame 的一個(gè)屬性,用于基于整數(shù)位置的索引進(jìn)行數(shù)據(jù)檢索
首先,需要導(dǎo)入 pandas 庫并創(chuàng)建一個(gè) DataFrame:
import pandas as pd
data = {'Name': ['Alice', 'Bob', 'Cathy', 'David'],
'Age': [25, 30, 29, 31],
'City': ['New York', 'San Francisco', 'Los Angeles', 'Seattle']}
df = pd.DataFrame(data)
現(xiàn)在,可以使用 iloc
進(jìn)行數(shù)據(jù)檢索。以下是一些示例:
row1 = df.iloc[1]
print(row1)
column1 = df.iloc[:, 1]
print(column1)
rows1_to_3 = df.iloc[1:4]
print(rows1_to_3)
columns1_and_3 = df.iloc[:, [1, 3]]
print(columns1_and_3)
rows1_and_3_columns1_and_3 = df.iloc[[1, 3], [1, 3]]
print(rows1_and_3_columns1_and_3)
通過這些示例,可以看到 iloc
如何方便地進(jìn)行數(shù)據(jù)檢索。請注意,iloc
基于整數(shù)位置的索引,因此需要謹(jǐn)慎處理邊界條件。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。