fastplyr currently cannot handle rowwise_df
objects created through
dplyr::rowwise()
and so this is a convenience function to allow you to
perform row-wise operations.
For common efficient row-wise functions,
see the 'kit' package.
f_rowwise(data, ..., .ascending = TRUE, .cols = NULL, .name = ".row_id")
A row-wise grouped_df
.
data frame.
Variables to group by using tidyselect
.
Should data be grouped in ascending row-wise order?
Default is TRUE
.
(Optional) alternative to ...
that accepts
a named character vector or numeric vector.
If speed is an expensive resource, it is recommended to use this.
Name of row-id column to be added.