combine_nest | R Documentation |
combine_nest() takes as input a 'tbl' formatted as | <element> | <feature> | <value> | <...> | and returns a 'tbl' with data nested for each combination The package used in the backend is gtools (Gregory R. Warnes, Ben Bolker, and Thomas Lumley, 2020)
combine_nest(.data, .names_from, .values_from)
## S3 method for class 'spec_tbl_df'
combine_nest(.data, .names_from, .values_from)
## S3 method for class 'tbl_df'
combine_nest(.data, .names_from, .values_from)
.data |
A 'tbl' formatted as | <element> | <feature> | <value> | <...> | |
.names_from |
The columns to build the permutations on (e.g., c(col1, col2)) |
.values_from |
The columns to be nested for each permutation (e.g., c(col3, col4, col5)) |
maturing
...
A nested 'tbl'
A 'tbl' with filled abundance
A 'tbl' with filled abundance
combine_nest(mtcars_tidy, car_model, c(feature,value))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.