group_modify.dtplyr_step | R Documentation |
These are methods for the dplyr group_map()
and group_modify()
generics.
They are both translated to [.data.table
.
## S3 method for class 'dtplyr_step'
group_modify(.data, .f, ..., keep = FALSE)
## S3 method for class 'dtplyr_step'
group_map(.data, .f, ..., keep = FALSE)
.data |
A |
.f |
The name of a two argument function. The first argument is passed
|
... |
Additional arguments passed to |
keep |
Not supported for lazy_dt. |
group_map()
applies .f
to each group, returning a list.
group_modify()
replaces each group with the results of .f
, returning a
modified lazy_dt()
.
library(dplyr)
dt <- lazy_dt(mtcars)
dt %>%
group_by(cyl) %>%
group_modify(head, n = 2L)
dt %>%
group_by(cyl) %>%
group_map(head, n = 2L)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.