groups_colnums | R Documentation |
Constructed a named vector of indices equivalent to the vectors produced by tidyselect::eval_select, but for the grouping variables in an object of class "grouped_df".
groups_colnums(data)
data |
A data frame. |
If data
is not grouped, then groups_colnums
returns a zero-length vector.
A named integer vector.
library(dplyr)
df <- data.frame(x = 1:4,
g = c(1, 1, 2, 2))
groups_colnums(df)
df <- group_by(df, g)
groups_colnums(df)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.