args_permute {reval} | R Documentation |
Permutation Argument Set
Description
Generate an argument table based on permutations.
Usage
args_permute(..., .n)
Arguments
... |
Named arguments to a function. |
.n |
the number of argument permutations to evaluate (sampling without replacement). If missing, all possible permutations are returned. |
Value
A tibble of argument combinations.
Examples
args_permute(x = 1:5, y = 1:2)
args_permute(x = 1:10, y = 1:10, z = 1:10, .n = 10)
[Package reval version 3.1-0 Index]