Basic filter functions return functions with bindings for A. The function evaluates to TRUE
if some operation on the input results in a value greater/smaller than A.
EpOverA(A = 4, na.rm = TRUE) FanoOverA(A = 2, na.rm = TRUE) MeanBelowA(A = 4, na.rm = TRUE) MeanOverA(A = 4, na.rm = TRUE)
A | The value that should / should not be exceeded. |
---|---|
na.rm | Whether NAs should be removed. |
A function with bindings for A.
The basic filter functions in detail:
EpOverA
evaluates to TRUE
if the aggregate of the arguments elements are larger than A.
FanoOverA
evaluates to TRUE
if the Fano factor of the argument is larger than A.
MeanBelowA
evaluates to TRUE
if the mean of the arguments elements are smaller than A.
MeanOverA
evaluates to TRUE
if the mean of the arguments elements are greater than A.