View source: R/filter_summary.R
summary.rmdFilt | R Documentation |
Provide summary of a rmdFilt S3 object
## S3 method for class 'rmdFilt'
summary(object, pvalue_threshold = NULL, ...)
object |
S3 object of class 'rmdFilt' created by
|
pvalue_threshold |
A threshold for the Robust Mahalanobis Distance (RMD) p-value. All samples with p-values below the threshold will be filtered out. Default value is NULL. Suggested value is 0.0001 |
... |
further arguments passed to or from other methods |
a summary of the p-values associated with running RMD-PAV across all samples. If a p-value threshold is provided the samples that would be filtered at this threshold are reported.
Lisa Bramer, Kelly Stratton
rmd_filter
library(pmartRdata)
mymetab <- group_designation(omicsData = metab_object, main_effects = "Phenotype")
mymetab <- edata_transform(omicsData = mymetab, data_scale = "log2")
myfilt <- rmd_filter(omicsData = mymetab)
summary(myfilt, pvalue_threshold = 0.001)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.