This function subsetting nonexceedance probability according to
$$
F(x) <- F(x | F(x) > 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]
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.