powered by
Nest columns into a list-column
nest.(.df, ..., .by = NULL, .key = NULL, .names_sep = NULL)
A data.table or data.frame
Columns to be nested.
Columns to nest by
New column name if .by is used
.by
If NULL, the names will be left alone. If a string, the names of the columns will be created by pasting together the inner column names and the outer column names.
df <- data.table( a = 1:3, b = 1:3, c = c("a", "a", "b"), d = c("a", "a", "b") ) df %>% nest(data = c(a, b)) df %>% nest(data = where(is.numeric)) df %>% nest(.by = c(c, d))
Run the code above in your browser using DataLab