Computer >> Máy Tính >  >> Lập trình >> Python

Python Pandas - Cách chọn nhiều hàng từ DataFrame

Để chọn nhiều hàng từ DataFrame, hãy đặt dải ô bằng toán tử:. Đầu tiên, hãy nhập thư viện gấu trúc yêu cầu với bí danh -

import pandas as pd

Bây giờ, hãy tạo một Pandas DataFrame mới -

dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35], [40, 45]],index=['w', 'x', 'y', 'z'],columns=['a', 'b'])

Chọn nhiều hàng bằng toán tử:-

dataFrame[0:2]

Ví dụ

Sau đây là mã -

import pandas as pd

# Create DataFrame
dataFrame = pd.DataFrame([[10, 15], [20, 25], [30, 35], [40, 45]],index=['w', 'x', 'y', 'z'],columns=['a', 'b'])

# DataFrame
print"DataFrame...\n",dataFrame

# select rows with loc
print"\nSelect rows by passing label..."
print(dataFrame.loc['z'])

# select rows with integer location using iloc
print"\nSelect rows by passing integer location..."
print(dataFrame.iloc[1])

# selecting multiple rows
print"\nSelect multiple rows..."
print(dataFrame[0:2])

Đầu ra

Điều này sẽ tạo ra kết quả sau -

DataFrame...
     a    b
w   10   15
x   20   25
y   30   35
z   40   45

Select rows by passing label...
a   40
b   45
Name: z, dtype: int64

Select rows by passing integer location...
a   20
b   25
Name: x, dtype: int64

Select multiple rows...
     a    b
w   10   15
x   20   25