IniziaInizia gratis

Combining i, j, and by (I)

In this exercise, you will combine the i, j, and by arguments to find the first and last ride for each start station. Recall that data.table first filters the rows in i, and then groups the rows using by, and finally compute the expression in j.

Questo esercizio fa parte del corso

Data Manipulation with data.table in R

Visualizza il corso

Istruzioni dell'esercizio

  • Arrange batrips using the start_date column in ascending order.
  • Group the rows by start_station.
  • Extract the first and last rows of start_date.

Esercizio pratico interattivo

Prova a risolvere questo esercizio completando il codice di esempio.

# Find the first and last ride for each start_station
first_last <- batrips[___, 
                      .(start_date = ___), 
                      by = ___]
first_last
Modifica ed esegui il codice