-
Limit the creation of group_by dataframes. There are cases where the group indices are sufficient, e.g. for the summarise verbs. This may be possible for all verbs that cannot nest other verb operations, i.e not possible with do.
-
Provide a way for a whole pipeline of manipulations to limit the copying of dataframes. Only the input dataframe needs to be preserved. The current way (modify_input_data option) that approaches this effect is cumbersome and the user has to provide a copy of the input data. Maybe with a function.
ply(
data,
define(y='x'),
define(z='2*y'),
...
)
Limit the creation of group_by dataframes. There are cases where the group indices are sufficient, e.g. for the summarise verbs. This may be possible for all verbs that cannot nest other verb operations, i.e not possible with
do.Provide a way for a whole pipeline of manipulations to limit the copying of dataframes. Only the input dataframe needs to be preserved. The current way (
modify_input_dataoption) that approaches this effect is cumbersome and the user has to provide a copy of the input data. Maybe with a function.