Output2HTML {ArrayTools} | R Documentation |
Creating HTML file for regressResult or interactionResult class
Output2HTML(object, ...)
object |
an regressResult or interactionResult class |
... |
you can specify the directory to store the result
by using the mydir argument. The default value of
mydir is the current working directory |
creating an HTML file
Xiwei Wu, Arthur Li
data(eSetExample) design<- new("designMatrix", target=pData(eSetExample), covariates = "Treatment") contrast<- new("contrastMatrix", design.matrix = design, compare1 = "Treated", compare2 = "Control") result<- regress(eSetExample, contrast) sigResult<- selectSigGene(result, fc.value=log2(2)) ## Not run: Output2HTML(sigResult)