Learn R Programming

reval (version 3.0-0)

args_permute: 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

Run this code
# NOT RUN {
args_permute(x = 1:5, y = 1:2)
args_permute(x = 1:10, y = 1:10, z = 1:10, .n = 10)

# }

Run the code above in your browser using DataLab