regroup_ | R Documentation |
This function regroups an <incidence2>
object across the specified groups.
The resulting <incidence2>
object will contains counts summed over the
groups present in the input. It differs from regroup()
only in
support for <tidy-select>
semantics in the groups
argument.
regroup_(x, groups = NULL)
x |
|
groups |
The groups to sum over. If |
regroup()
for a version without tidyselect semantics. This may be
preferable for programatic usage.
if (requireNamespace("outbreaks", quietly = TRUE)) {
data(ebola_sim_clean, package = "outbreaks")
dat <- ebola_sim_clean$linelist
i <- incidence_(
dat,
date_index = date_of_onset,
groups = c(gender, hospital)
)
regroup_(i)
regroup_(i, hospital)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.