Learn R Programming

lmomco (version 2.0.1)

quast3: Quantile Function of the 3-Parameter Student T Distribution

Description

This function computes the quantiles of the 3-parameter Student T distribution given parameters ($\xi$, $\alpha$, $\nu$) of the distribution computed by parst3. There is no explicit solution for the quantile function for nonexceedance probability F but built-in Rfunctions can be used. For $\nu \ge 1000$, qnorm(F, mean=U, sd=A) for U = $\xi$ and A = $\alpha$ for $1.000001 \le \nu \le 1000$, U + A*qt(F, N) for N = $\nu$ and where qnorm() is for the Normal distribution and qt() is the 1-parameter Student T distribution.

Usage

quast3(f, para, paracheck=TRUE)

Arguments

f
Nonexceedance probability ($0 \le F \le 1$).
para
The parameters from parst3 or similar.
paracheck
A logical on whether the parameter should be check for validity.

Value

  • Quantile value for nonexceedance probability $F$.

References

Asquith, W.H., 2011, Distributional analysis with L-moment statistics using the R environment for statistical computing: CreateSpace Independent Publishing Platform, 2nd printing, ISBN 978-1463508418.

See Also

cdfst3, parst3, pdfst3

Examples

Run this code
lmr <- lmoms(c(123,34,4,654,37,78))
  quast3(0.75,parst3(lmr))

Run the code above in your browser using DataLab