| expand_list | R Documentation |
This function creates a cross product of multiple lists, similar to tidyr::expand_grid()
but with a more convenient interface that doesn't require wrapping arguments in an
extra list(). It's useful for generating combinations of parameters for analysis.
expand_list(...)
... |
Named arguments, each containing a vector or list of values to combine |
A list of lists, where each inner list contains one combination of values from the input arguments
# Create combinations of parameters
combinations <- plnr::expand_list(
a = 1:2,
b = c("a", "b")
)
# View the combinations
str(combinations)
# Compare with tidyr::expand_grid
tidyr::expand_grid(list(
a = 1:2,
b = c("a", "b")
))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.