powered by
data.frame
This function groups a data.frame according to values of one column.
group_data_frame(df, by, keep_by = TRUE)
A list of data.frames, subsets of df.
list
df
A data.frame.
A character, the name of a column of df to group by.
character
Either TRUE (default) to keep the grouping column by, or FALSE, else.
TRUE
by
FALSE
df <- data.frame("label" = c("A", "B"), "number" = 1:10) group_data_frame(df = df, by = "label") group_data_frame(df = df, by = "label", keep_by = FALSE)
Run the code above in your browser using DataLab