This function computes the quantiles of the Cauchy distribution given parameters (ξ and α) of the distribution provided by parcau. The quantile function of the distribution is [REMOVE_ME]x(F)=ξ+α×tan(π(F−0.5))\mbox,[REMOVEME2]
where x(F) is the quantile for nonexceedance probability F, ξ is a location parameter and α is a scale parameter. The quantile function of the Cauchy distribution is supported by function qcauchy. This function does not use qcauchy because qcauchy does not return Inf for F=1 although it returns -Inf for F=0.
Description
This function computes the quantiles of the Cauchy distribution given parameters (ξ and α) of the distribution provided by parcau. The quantile function of the distribution is
x(F)=ξ+α×tan(π(F−0.5))\mbox,
where x(F) is the quantile for nonexceedance probability F, ξ is a location parameter and α is a scale parameter. The quantile function of the Cauchy distribution is supported by function qcauchy. This function does not use qcauchy because qcauchy does not return Inf for F=1 although it returns -Inf for F=0.
quacau(f, para, paracheck=TRUE)
Arguments
f: Nonexceedance probability (0≤F≤1).
para: The parameters from parcau or vec2par.
paracheck: A logical controlling whether the parameters are checked for validity. Overriding of this check might be extremely important and needed for use of the distribution quantile function in the context of TL-moments with nonzero trimming.
Returns
Quantile value for for nonexceedance probability F.
References
Elamir, E.A.H., and Seheult, A.H., 2003, Trimmed L-moments: Computational Statistics and Data Analysis, v. 43, pp. 299--314.
Gilchirst, W.G., 2000, Statistical modeling with quantile functions: Chapman and Hall/CRC, Boca Raton, FL.
Author(s)
W.H. Asquith
See Also
cdfcau, pdfcau, lmomcau, parcau
Examples
para <- c(12,12) quacau(.5,vec2par(para,type='cau'))