View source: R/filter_summary.R
summary.customFilt | R Documentation |
Provide summary of a customFilt S3 object
## S3 method for class 'customFilt'
summary(object, ...)
object |
S3 object of class 'customFilt' created by
|
... |
further arguments passed to or from other methods |
a summary of the items in e_data, f_data, and e_meta that will be removed as a result of applying the custom filter.
Lisa Bramer
custom_filter
library(pmartRdata)
to_filter <- custom_filter(omicsData = metab_object, e_data_remove = "fumaric acid",
f_data_remove = "Sample_1_Phenotype2_B")
summary(to_filter)
to_filter2 <- custom_filter(omicsData = metab_object,
f_data_keep = metab_object$f_data$SampleID[1:10])
summary(to_filter2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.