logical_parameter {dynparam}R Documentation

Define a logical parameter

Description

Define a logical parameter

Usage

logical_parameter(id, default, description = NULL, tuneable = TRUE)

Arguments

id

The name of the parameter.

default

The default value of the parameter.

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

logical_parameter(
  id = "scale",
  default = TRUE,
  description = "Whether or not to scale the input variables"
)

[Package dynparam version 1.0.2 Index]