topRDAhits {MEAL} | R Documentation |
Get a list of the features significantly associated to the first two RDA components
topRDAhits(object, tPV = 0.05)
object |
|
tPV |
numeric with the p-value threshold. Only features with a p-values below this threshold will be shown. |
data.frame with the features, the component, the correlation and the p-value
if (require(minfiData) & require(GenomicRanges)){ set <- ratioConvert(mapToGenome(MsetEx[1:10,])) model <- model.matrix(~set$sex) rda <- runRDA(set, model) topRDAhits(rda) }