Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

pOverA

A filter function to filter according to the proportion of elements larger than A.


Description

A function that returns a function with values for A, p and na.rm bound to the specified values. The function takes a single vector, x, as an argument. When the returned function is evaluated it returns TRUE if the proportion of values in x that are larger than A is at least p.

Usage

pOverA(p=0.05, A=100, na.rm=TRUE)

Arguments

A

The value to be exceeded.

p

The proportion that need to exceed A for TRUE to be returned.

na.rm

If TRUE then NA's are removed.

Value

pOverA returns a function with bindings for A, p and na.rm. This function evaluates to TRUE if the proportion of values in x that are larger than A exceeds p.

Author(s)

R. Gentleman

See Also

Examples

ff<- pOverA(p=.1, 10)
  ff(1:20)
  ff(1:5)

genefilter

genefilter: methods for filtering genes from high-throughput experiments

v1.72.1
Artistic-2.0
Authors
R. Gentleman, V. Carey, W. Huber, F. Hahne
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.