View source: R/GreenwoodUtils.R
| qStat | R Documentation |
Quantile of a test statistic.
qStat(p, n,
type = c("Greenwood", "Jackson", "logLRGPD", "logLRLomax",
"logLRGEV", "logLRFrechet"),
outNorm = FALSE)
p |
Numeric vector of probabilities. Very small values ( |
n |
Sample size. |
type |
The type of statistic, see Details. |
outNorm |
Logical. If |
The function provides an approximation of the distribution for several statistics.
For "Greenwood", the statistic is Greenwood's
statistic. The distribution is that of the squared coefficient of
variation \textrm{CV}^2 of a sample of size n
from the exponential distribution as computed by CV2.
For "Jackson", the statistic is Jackson's
statistic, see Jackson.
For "logLRGPD" and "logLRLomax", the
statistic is the log of the likelihood ratio of a sample
from the exponential distribution. The log-likelihoods are
for an exponential distribution compared to a GPD with
non-zero shape, or to a GPD with positive shape
(equivalently, a Lomax distribution).
For "logLRGEV" and "logLRFrechet", the
statistic is the log of the likelihood ratio of a sample
from the Gumbel distribution. The log-likelihoods are for a
Gumbel distribution compared to a GEV with non-zero shape,
or to a GEV with positive shape (equivalently, a
Fréchet distribution).
The log of Likelihood Ratios are multiplied by 2, so that they
compare to a chi-square statistic with one degree of freedom.
A vector of quantiles.
The precision of the result given is limited, and is about two-digits. This function is not intended to be used as such and is only provided for information.
Yves Deville
res <- qStat(n = 40, type = "Greenwood")
plot(res$q, res$p, type = "o")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.