Description Usage Arguments Value Author(s) See Also Examples
Generic Show/Print/Summary method for lmdme class output visualization.
1 2 3 4 5 6 7 8 |
x |
lmdme class object. |
object |
lmdme class object. |
term |
character with the corresponding term to return. Default value is NULL to return every decomposed term (if more than one is available). |
according to the call
print, show or
summary: |
console output text with increasing detail of lmdme object. |
show or summary |
console output text of the lmdme object, plus a data.frame with model decomposition summary data. |
Cristobal Fresno and Elmer A Fernandez
lmdme
, coef
,
resid
, fitted
,
modelDecomposition
,
components
, componentsType
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | {
data(stemHypoxia)
##Just to make a balanced dataset in the Fisher sense (2 samples per
## time*oxygen levels)
design<-design[design$time %in% c(0.5, 1, 5) & design$oxygen %in% c(1,5,21),]
design$time<-as.factor(design$time)
design$oxygen<-as.factor(design$oxygen)
rownames(M)<-M[, 1]
##Keeping appropriate samples only
M<-M[, colnames(M) %in% design$samplename]
##ANOVA decomposition
fit<-lmdme(model=~time+oxygen+time:oxygen, data=M, design=design)
}
## Not run:
#equivalent to call show(fit)
fit
print(fit)
summary(fit)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.