Description Creating Objects Object Components Extends Methods Author(s) See Also Examples
Class to Contain the Regression Result Based on An Interaction Model. Interaction is a statistical term refering to a situation when the relationship between the outcome and the variable of the main interest differs at different levels of the extraneous variable
interactionResult object is generally created from the postInteraction function
See postInteraction
A list of four or more components. Each component is a reggressResult class. The first component contains all the genes. The second component contains genes with the interaction effect The rest components contains genes with the interaction effect across different levels. Each component contains the result for each level.
Class "list", from data part.
Class "vector", by class "list", distance 2.
signature(object = "regressResult")
:
access the adjustment slot
signature(object = "regressResult")
:
access the adjPVal slot
signature(object = "regressResult")
:
access the annotation slot
signature(object = "regressResult")
:
access the contrast slot
signature(object = "regressResult")
:
access the FValue slot
signature(object = "regressResult")
:
access the foldChange slot
signature(object = "regressResult")
:
access the significantFCCutoff slot
signature(object = "regressResult")
:
access the fileName slot
signature(object = "regressResult")
:
access the filterMethod slot
signature(object = "regressResult")
:
access the ID slot
signature(object = "regressResult")
:
access the significantIndex slot
signature(object = "regressResult")
:
access the normalizationMethod slot
signature(object = "regressResult")
:
access the pValue slot
signature(object = "regressResult")
:
access the significantPvalueCutoff slot
signature(object = "regressResult")
: create HTML file for sigificant genes in regressionResult
signature(object = "regressResult")
:
access the regressionMethod slot
signature(object = "regressResult")
:
select significant genes for regressionResult class
signature(object = "regressResult")
:
print regressResult
signature(x = "regressResult")
:
sort regressResult
signature(object = "regressResult")
:
print the summary for regressResult
signature(object = "interactionResult")
: calculate the length of the interactionResult class
Xiwei Wu, Arthur Li
1 2 3 4 5 6 7 8 9 | ## Creating the interactionREsult takes a few steps:
data(eSetExample)
design.int<- new("designMatrix", target=pData(eSetExample), covariates = c("Treatment", "Group"),
intIndex = c(1, 2))
contrast.int<- new("contrastMatrix", design.matrix = design.int, interaction=TRUE)
result.int<- regress(eSetExample, contrast.int)
sigResult.int <- selectSigGene(result.int)
intResult <- postInteraction(eSetExample, sigResult.int, mainVar ="Treatment",
compare1 = "Treated", compare2 = "Control")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.