| cdfglo | R Documentation | 
Distribution function and quantile function of the generalized logistic distribution.
cdfglo(x, para = c(0, 1, 0))
quaglo(f, para = c(0, 1, 0))
x | 
 Vector of quantiles.  | 
f | 
 Vector of probabilities.  | 
para | 
 Numeric vector containing the parameters of the distribution,
in the order   | 
The generalized logistic distribution with
location parameter \xi,
scale parameter \alpha and
shape parameter k has distribution function
F(x)=1/\lbrace 1+\exp(-y)\rbrace
where
y=-k^{-1}\log\lbrace1-k(x-\xi)/\alpha\rbrace,
with x bounded by \xi+\alpha/k
from below if k<0 and from above if k>0,
and quantile function
x(F)=\xi+{\alpha\over k}\biggl\lbrace1-\biggl({1-F \over F}\biggr)^k\biggr\rbrace.
The logistic distribution is the special case k=0.
cdfglo gives the distribution function;
quaglo gives the quantile function.
The functions expect the distribution parameters in a vector,
rather than as separate arguments as in the standard R
distribution functions pnorm, qnorm, etc.
cdfkap for the kappa distribution,
which generalizes the generalized logistic distribution.
# Random sample from the generalized logistic distribution
# with parameters xi=0, alpha=1, k=-0.5.
quaglo(runif(100), c(0,1,-0.5))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.