Log-Normal Distribution
Probability density, cumulative distribution, inverse cumulative distribution, random sample and starting values functions.
dlnorm(x, meanlog = 0, sdlog = 1, log = FALSE) plnorm(q, meanlog = 0, sdlog = 1, lower.tail = TRUE, log.p = FALSE) qlnorm(p, meanlog = 0, sdlog = 1, lower.tail = TRUE, log.p = FALSE) rlnorm(n, meanlog = 0, sdlog = 1) slnorm(x)
x |
A numeric vector of values. |
meanlog |
mean on log scale parameter. |
sdlog |
standard deviation on log scale parameter. |
log |
logical; if TRUE, probabilities p are given as log(p). |
q |
vector of quantiles. |
lower.tail |
logical; if TRUE (default), probabilities are |
log.p |
logical; if TRUE, probabilities p are given as log(p). |
p |
vector of probabilities. |
n |
number of observations. |
A numeric vector.
x <- seq(0.01, 5, by = 0.01) plot(x, dlnorm(x), type = "l")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.