map_precisely: Calculate with precisely functions across values
Description
map_precisely() is a wrapper around tidyr::crossing() and
purrr::pmap_dfr() to give a set of values to any of the calculation
functions in precisely. All possible combinations of the values are passed to
the function, returning a tibble where each row is the result for each
combination.
Usage
map_precisely(.f, ...)
Arguments
.f
a function in precisely
...
arguments passed to .f. All possible combinations of argument
values are given to the function.