f2flo | R Documentation |
This function converts the cumulative distribution function of F(x)
to a conditional cumulative distribution function P(x)
based on the probability level of the left-hand threshold. It is recommended that this threshold (as expressed as a probability) be that value returned from x2xlo
in element pp
. The conversion is simple
P(x) <- (F(x) - pp)/(1-pp)\mathrm{,}
where the term \mathrm{pp}
corresponds to the estimated probability or plotting position of the left-hand threshold.
This function is particularly useful for applications in which zero values in the data set require truncation so that logarithms of the data may be used. But also this function contributes to the isolation of the right-hand tail of the distribution for analysis. Finally, f <- f[f >= pp]
for type="ge"
or f <- f[f > pp]
for type="gt"
is used internally for probability subsetting, so the user does not have to do that with the nonexceedance probability before calling this function. The function f2f
does similar subsetting without converting F(x)
to P(x)
. Users are directed to Examples under par2qua2lo
and carefully note how f2flo
and f2f
are used.
f2flo(f, pp=NA, xlo=NULL, type=c("ge", "gt"))
f |
A vector of nonexceedance probabilities. |
pp |
The plotting position of the left-hand threshold and recommended to come from |
xlo |
An optional result from |
type |
The type of the logical construction |
A vector of conditional nonexceedance probabilities.
W.H. Asquith
x2xlo
, flo2f
, f2f
, xlo2qua
# See examples for x2xlo().
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.