Run a Goose recipe with parameters.
goose_recipe(
recipe,
params = list(),
explain = FALSE,
render = FALSE,
timeout = getOption("goose.timeout", 300),
retries = getOption("goose.retries", 1)
)Recipe output or explanation
Character, recipe name or path to recipe file
Named list of parameters to pass to recipe
Logical, show recipe explanation instead of running
Logical, render recipe instead of running
Numeric, timeout in seconds (default uses getOption('goose.timeout', 300)).
Set to Inf for no timeout.
Integer, number of retries after the first attempt (default uses
getOption('goose.retries', 1)). Retries only occur for timeout/transient errors.