Normal sampling (potentially truncated) for p_dbl()
.
See also
Other Sampler:
Sampler
,
Sampler1D
,
Sampler1DCateg
,
Sampler1DRfun
,
Sampler1DUnif
,
SamplerHierarchical
,
SamplerJointIndep
,
SamplerUnif
Super classes
paradox::Sampler
-> paradox::Sampler1D
-> paradox::Sampler1DRfun
-> Sampler1DNormal
Active bindings
mean
(
numeric(1)
)
Mean parameter of the normal distribution.sd
(
numeric(1)
)
SD parameter of the normal distribution.
Methods
Inherited methods
Method new()
Creates a new instance of this R6 class.
Usage
Sampler1DNormal$new(param, mean = NULL, sd = NULL)
Arguments
param
(
ParamSet
)
Domain / support of the distribution we want to sample from. Must be one-dimensional.mean
(
numeric(1)
)
Mean parameter of the normal distribution. Default ismean(c(param$lower, param$upper)
.sd
(
numeric(1)
)
SD parameter of the normal distribution. Default is(param$upper - param$lower)/4
.