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

Filtering rows using positive integers

You can filter the required rows from a data.table by providing the row indices to its first argument (i), just like when working with a data.frame. However, unlike a data.frame, you don't need to add a comma (,) when filtering rows.

Bu egzersiz

Data Manipulation with data.table in R

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

Uygulamalı interaktif egzersiz

Bu örnek kodu tamamlayarak bu egzersizi bitirin.

# Filter third row
row_3 <- batrips[___]
row_3
Kodu Düzenle ve Çalıştır