CommencerCommencer gratuitement

Combining i and j

As you saw in an earlier exercise when you combine i and j, data.table first filters the rows in i and then applies the computation in j. This applies when calculating multiple stats as well.

Additionally, you can also specify plot(), hist() or any other plotting functions in the j argument.

Cet exercice fait partie du cours

Data Manipulation with data.table in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

duration_stats <- batrips[___, 
                          .(___, 
                            ___)]
duration_stats
Modifier et exécuter le code