
This function computes the cumulative probability or nonexceedance probability of the 3-parameter Student t distribution given parameters (parst3
. There is no explicit solution for the cumulative distribution function for value X
but built-in R functions can be used. For pnorm(X, mean=U, sd=A)
for U
= A
= pt((X-U)/A, N)
for N
= pnorm
is for the Normal distribution and the R function pt
is the 1-parameter Student t distribution.
cdfst3(x, para, paracheck=TRUE)
Nonexceedance probability (
A real value vector.
The parameters from parst3
or vec2par
.
A logical on whether the parameter should be check for validity.
W.H. Asquith
Asquith, W.H., 2011, Distributional analysis with L-moment statistics using the R environment for statistical computing: Createspace Independent Publishing Platform, ISBN 978--146350841--8.
pdfst3
, quast3
, lmomst3
, parst3
lmr <- lmoms(c(123,34,4,654,37,78))
cdfst3(191.5143, parst3(lmr)) # 75th percentile
Run the code above in your browser using DataLab