Create an object representing a univariate normal distribution.
Usage
normal(expectation = 0, lambda, P = 1)
Arguments
expectation
The expectation of the distribution.
lambda
THE NATURAL LOGARITHM OF THE STANDARD DEVIATION OF THE DISTRIBUTION. Thus, if the desired standard deviation is \(s\),
the second argument should be \(\log(s)\). If the desired variance is \(v\), the second argument
should be \(\log(v)/2\). The default is a standard deviation of 1. An alternative to
specifying this argument is to specify the precision parameter P.
P
If given, this argument specifies the precision of the distribution, i.e., the inverse of the variance.