Given a set of parameters describing a lognormal distribution, return the parameters of the underlying normal distribution.

lognormal_to_normal(meanlog, sdlog)

Arguments

meanlog

Mean log.

sdlog

Standard deviation log.

Value

A list.

See also

Examples

lognormal_to_normal(meanlog=1, sdlog=3)
#> $mean #> [1] 244.6919 #> #> $sd #> [1] 22025.11 #>