parameter_sets | R Documentation |
Collect and return all defined parameters.
parameter_sets(...)
... |
Defined lists of parameters. |
A list contains the parameters of estimating process and simulation process
param_numeric()
, param_character()
, param_Boolean()
, param_integer()
param_set <- parameter_sets(
param_character(id = 'dimension_method',
default = "UMAP",
alternatives = c("UMAP", "TSNE", "PCA"),
force = TRUE,
description = "The algorithm to use for dimensionality reduction.",
function_name = "a"),
param_Boolean(id = "verbose",
default = TRUE,
process = 'estimation',
description = "Whether to return the information during the process",
function_name = "a"),
param_integer(id = "group_num",
default = 1L,
lower = 1L,
upper = 50L,
border = TRUE,
description = "How many groups to be simulated",
function_name = "b"),
param_numeric(id = "probability",
default = 0.5,
lower = 0,
upper = 1,
border = TRUE,
force = TRUE,
process = 'estimation',
description = "The probability to select the right number",
function_name = "b")
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.