f2f | R Documentation |
This function subsetting nonexceedance probability according to
F(x) <- F(x | F(x) [>,\ge] p)\mathrm{,}
where F
is nonexceedance probability for x
and pp
is the probability of a threshold. In R logic, this is simply f <- f[f > pp]
for type == "gt"
or f <- f[f >= pp]
for type == "ge"
.
This function is particularly useful to shorten a commonly needed code logic related such as FF[FF >= XloALL$pp]
, which would be needed in conditional probability adjustements and XloALL
is from x2xlo
. This could be replaced by syntax such as f2f(FF, xlo=XloALL)
. This function is very similar to f2flo
with the only exception that the conditional probability adjustment is not made.
f2f(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
, xlo2qua
, f2flo
, f2f
# See examples for x2xlo().
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.