Log-normal distribution {dprop} | R Documentation |
Compute the distributional properties of the log-normal distribution
Description
Compute the first four ordinary moments, central moments, mean, and variance, Pearson's coefficient of skewness and kurtosis, coefficient of variation, median and quartile deviation based on the selected parametric values of the log-normal distribution.
Usage
d_lnormal(mu, sigma)
Arguments
mu |
The location parameter ( |
sigma |
The strictly positive scale parameter of the log-normal distribution ( |
Details
The following is the probability density function of the log-normal distribution:
f(x)=\frac{1}{x\sigma\sqrt{2\pi}}e^{-\frac{\left(\log(x)-\mu\right)^{2}}{2\sigma^{2}}},
where x > 0
, \mu\in\left(-\infty,+\infty\right)
and \sigma > 0
.
Value
d_lnormal gives the first four ordinary moments, central moments, mean, and variance, Pearson's coefficient of skewness and kurtosis, coefficient of variation, median and quartile deviation based on the selected parametric values of the log-normal distribution.
Author(s)
Muhammad Imran.
R implementation and documentation: Muhammad Imran imranshakoor84@yahoo.com.
References
Johnson, N. L., Kotz, S., & Balakrishnan, N. (1995). Continuous Univariate Distributions, Volume 1, Chapter 14. Wiley, New York.
See Also
Examples
d_lnormal(1,0.5)