Filtering with %in%
%in% allows selecting rows that exactly matches one or more values, for example:
c("a", "b", "c", "d") %in% c("d", "a")
[1] TRUE FALSE FALSE TRUE
Latihan ini adalah bagian dari kursus
Data Manipulation with data.table in R
Petunjuk latihan
Filter all rows where trip_id is equal to 588841, 139560, or 139562.
Latihan interaktif praktis
Cobalah latihan ini dengan menyelesaikan kode contoh berikut.
# Filter all rows where trip_id is 588841, 139560, or 139562
filter_trip_ids <- batrips[___]
filter_trip_ids