Description Usage Arguments Details Value Author(s) References Examples
Density, distribution function, quantile function, random generation and expected value function for the double log normal distribution with mean equal to 'mean' and standard deviation equal to 'sd'.
1 2 3 4 5 6 7 | dloglognorm(x, mean = 0, sd = 1)
ploglognorm(q, mean = 0, sd = 1)
qloglognorm(p, mean = 0, sd = 1)
rloglognorm(n, mean = 0, sd = 1)
mloglognorm(moment, mean, sd)
eloglognorm(mean, sd)
vloglognorm(mean, sd)
|
x,q |
vector of quantiles. |
p |
vector of probabilites. |
n |
number of observations. |
mean |
vector of means. |
sd |
vector of standard deviations. |
moment |
vector of moments |
If 'mean' or 'sd' are not specified they assume the default values of '0' and '1', respectively.
'dloglognorm' gives the density, 'ploglognorm' gives the distribution function, 'qloglognorm' gives the quantile function, 'rloglognorm' generates random deviates, 'mloglognorm' returns the rth moment, 'eloglognorm' gives the expected value of the distirbution and vloglognorm the variance.
Heike Trautmann trautmann@statistik.uni-dortmund.de, Detlef Steuer steuer@hsu-hamburg.de and Olaf Mersmann olafm@statistik.uni-dortmund.de
B. Holland, M. Ahsanullah (1989): Further Resultson the Distribution of Meinhold and Singpurwalla, The American Statistician 43 (4), p. 216-219
1 2 3 4 5 6 7 8 9 10 | x <- seq(0, 1, by=0.05)
## Several different shapes of the density:
par(mfrow=c(3, 1))
curve(dloglognorm(x, -0.2, 0.2), 0, 1, main="DLN(-0.2, 0.2)")
curve(dloglognorm(x, 0.2, 1.0), 0, 1, main="DLN(0.2, 2.0)")
curve(dloglognorm(x, 0.2, 1.8), 0, 1, main="DLN(0.2, 2.0)")
## Check precision:
z <- x - pnorm(qnorm(x, .2, 1.0), .2, 1.0)
max(z)
|
[1] 1.110223e-16
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.