param_vector | R Documentation |
Define Vector Parameters
param_vector(
id,
type = "vector",
default = NULL,
force = FALSE,
description = NULL,
process = "simulation",
function_name
)
id |
A parameter name. |
type |
The type of parameter. |
default |
The default values. Length to one or more. |
force |
Logical, whether this parameter must be needed or not. |
description |
The description information of this parameter. |
process |
Two options, simulation or estimation. Which process does this parameter involved in. |
function_name |
The function name where the parameter exists. |
A list.
path_method <- param_vector(
id = 'path',
default = c(0,1,2,3),
process = "simulation"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.