Learn R Programming

nanny (version 0.1.8)

permute_nest: Permute columns and nest data for each permutation

Description

permute_nest() takes as input a `tbl` formatted as | <element> | <feature> | <value> | <...> | and returns a `tbl` with data nested for each permutation. The package used in the backend is gtools (Gregory R. Warnes, Ben Bolker, and Thomas Lumley, 2020)

Usage

permute_nest(.data, .names_from, .values_from)

# S4 method for spec_tbl_df permute_nest(.data, .names_from, .values_from)

# S4 method for tbl_df permute_nest(.data, .names_from, .values_from)

Arguments

.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))

Value

A nested `tbl`

A `tbl` with filled abundance

A `tbl` with filled abundance

Details

maturing

...

Examples

Run this code
# NOT RUN {
permute_nest(mtcars_tidy, car_model, c(feature,value))

# }

Run the code above in your browser using DataLab