Specifies a normal (Gaussian) distribution.

norm(mean, sd)

Arguments

mean

Numeric. Mean of the distribution.

sd

Numeric. Standard deviation of the distribution.

Value

A list specification for a normal distribution.

Examples

if (FALSE) { # \dontrun{
# Standard normal
prior1 <- norm(0, 1)

# Prior for log Rt
prior2 <- norm(log(1.5), 0.2)
} # }