param_others | R Documentation |
Define Other Object Parameters
param_others(
id = NULL,
type = NULL,
default = NULL,
description = NULL,
force = FALSE,
process = "simulation",
function_name
)
id |
A parameter name. Default is NULL. |
type |
The type of parameter, which can be a list or any other object you input. |
default |
The default input. |
description |
The description information of this parameter. |
force |
Logical, whether this parameter must be needed or not. |
process |
Two options, simulation or estimation. Which process does this parameter involved in. |
function_name |
The function name where the parameter exists. |
A list.
list_input <- param_others(
id = 'input_list',
type = "list",
process = "simulation"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.