character_parameter: Define a character / string parameter

Description Usage Arguments See Also Examples

View source: R/param_character.R

Description

Define a character / string parameter

Usage

1
character_parameter(id, default, values, description = NULL, tuneable = TRUE)

Arguments

id

The name of the parameter.

default

The default value of the parameter.

values

A set of possible values.

description

An optional (but recommended) description of the parameter.

tuneable

Whether or not a parameter is tuneable.

See Also

dynparam for an overview of all dynparam functionality.

Examples

1
2
3
4
5
6
character_parameter(
  id = "method",
  default = "pearson",
  values = c("pearson", "spearman", "kendall"),
  description = "Which correlation coefficient to compute."
)

dynparam documentation built on Jan. 5, 2021, 1:06 a.m.