Description Usage Arguments Value Author(s) See Also Examples
Remove NA series from the experiment set.
1 2 3 4 5 6 | ## Static method (use this):
## DataFilter$removeNASeries(experimentSet, byRows=TRUE, verbose=FALSE, ...)
## Don't use the below:
## S3 method for class 'DataFilter'
removeNASeries(static, experimentSet, byRows=TRUE, verbose=FALSE, ...)
|
experimentSet |
|
byRows |
|
verbose |
If |
... |
Not used |
The experiment data.frame
with rows or columns containing all NA
's removed.
Alex Lisovich, Roger Day
For more information see DataFilter
.
1 2 3 4 5 6 7 8 | #set to NA protein count rows which average count is less than 50 percent
fltExperimentSet<-DataFilter$do.apply(examples$msmsExperimentSet,
byRows=TRUE,filterFun=DataFilter$minAvgCountConstraint,filtParams=0.5,verbose=TRUE);
#remove NA series
fltExperimentSet<-DataFilter$removeNASeries(fltExperimentSet,byRows=TRUE,verbose=TRUE);
dim(fltExperimentSet);
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.