BaşlayınÜcretsiz Başlayın

Selecting rows and columns

The syntax for subsetting both rows and columns in Pandas is similar to R. The rows and columns are specified to the left and right of the comma, respectively.

To subset rows and columns using boolean expressions or labels, you can use:

df.loc[row_labels, column_labels]

To subset rows and columns using indices, you can use:

df.iloc[row_indices, column_indices]

Bu egzersiz

Python for R Users

kursunun bir parçasıdır
Kursu Görüntüle

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Subset rows and columns
print(tips.____[____, ____])
Kodu Düzenle ve Çalıştır