您好,登錄后才能下訂單哦!
iloc
是 pandas 庫中 DataFrame 的一個屬性,用于基于整數(shù)索引的位置來選擇數(shù)據(jù)
以下是使用 iloc
進行數(shù)據(jù)框子集選擇的一些示例:
import pandas as pd
data = {'A': [1, 2, 3], 'B': [4, 5, 6]}
df = pd.DataFrame(data)
# 選擇第二行(位置為1的行)
row_1 = df.iloc[1]
print(row_1)
import pandas as pd
data = {'A': [1, 2, 3], 'B': [4, 5, 6]}
df = pd.DataFrame(data)
# 選擇列 A
column_a = df.iloc[:, 0]
print(column_a)
import pandas as pd
data = {'A': [1, 2, 3], 'B': [4, 5, 6]}
df = pd.DataFrame(data)
# 選擇第二行(位置為1的行)到第三行(位置為2的行),以及第一列(位置為0的列)
rows_1_to_2_and_column_0 = df.iloc[1:3, 0]
print(rows_1_to_2_and_column_0)
import pandas as pd
data = {'A': [1, 2, 3], 'B': [4, 5, 6]}
df = pd.DataFrame(data)
# 選擇列 A 中值大于 1 的行
rows_greater_than_1 = df.iloc[df['A'] > 1]
print(rows_greater_than_1)
通過這些示例,你可以看到如何使用 iloc
在 pandas 中靈活地創(chuàng)建數(shù)據(jù)框子集。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。