param_Boolean | R Documentation |
Define a Boolean parameter.
param_Boolean(
id,
type = "logical",
default,
force = FALSE,
description = NULL,
process = "simulation",
function_name
)
id |
A parameter name. |
type |
The type of parameter. Must be a logical value. |
default |
The default value. TRUE or FALSE. |
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.
verbose <- param_Boolean(
id = "verbose",
default = TRUE,
force = TRUE,
description = "Whether to return the information during the process"
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.