getLower {ParamHelpers} | R Documentation |
Get lower / upper bounds and allowed discrete values for parameters.
Description
getLower
and getUpper
return a numerical vector of lower and
upper bounds, getValues
returns a list of possible value sets for discrete
parameters.
Parameters for which such bound make no sense - due to their type - are not present in the result.
Usage
getLower(obj, with.nr = FALSE, dict = NULL)
getUpper(obj, with.nr = FALSE, dict = NULL)
getValues(obj, dict = NULL)
Arguments
obj |
( |
with.nr |
( |
dict |
( |
Value
vector
| list
. Named by parameter ids.
Examples
ps = makeParamSet(
makeNumericParam("u"),
makeDiscreteParam("v", values = c("a", "b")),
makeIntegerParam("w", lower = expression(ceiling(p / 3)), upper = 2),
makeDiscreteParam("x", values = 1:2),
makeNumericVectorParam("y", len = 2, lower = c(0, 10), upper = c(1, 11)),
keys = "p"
)
getLower(ps, dict = list(p = 7))
getUpper(ps)
ps = makeParamSet(
makeNumericParam("u"),
makeDiscreteParam("w", values = list(a = list(), b = NULL))
)
getValues(ps)
par.vals = list(
u = makeNumericParam("u"),
v = makeIntegerParam("v", lower = 1, upper = 2),
w = makeDiscreteParam("w", values = 1:2),
x = makeNumericVectorParam("x", len = 2, lower = c(3, 1), upper = expression(n))
)
getLower(par.vals)
getUpper(par.vals, dict = list(n = 12))