minAvgCountConstraint.DataFilter: Perform mean based thresholding of an input vector

Description Usage Arguments Value Author(s) See Also Examples

Description

Perform mean based thresholding of an input vector.

Usage

1
2
3
4
5
6
## Static method (use this):
## DataFilter$minAvgCountConstraint(x, filtParams, ...)

## Don't use the below:
## S3 method for class 'DataFilter'
minAvgCountConstraint(static, x, filtParams, ...)

Arguments

x

numeric input vector.

filtParams

vector of constraint parameters. If the mean of an input vector is less than filterParams[1] the whole vector is replaced by NA 's vector of the same length.

...

Not used

Value

numeric vector or vector of NA 's depending on thresholding criteria.

Author(s)

Alex Lisovich, Roger Day

See Also

For more information see DataFilter.

Examples

1
2
3
4
5
6
7
 #set to NA protein count rows which contain less than 50 percent of counts >=2
 fltExperimentSet<-DataFilter$do.apply(examples$msmsExperimentSet,
   byRows=TRUE,filterFun=DataFilter$minAvgCountConstraint,filtParams=0.5,verbose=TRUE);

 #print the number of rows set to NA
 sum(is.na(rowSums(fltExperimentSet[,-1])))
 

IdMappingAnalysis documentation built on Oct. 31, 2019, 3:30 a.m.