Description Usage Arguments Value Author(s) See Also Examples
To obtain lmdme slot information, according to the given function call (see Values). If a term parameter is not specified, it will return all the available terms. Otherwise, just the one specified.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | ## S4 method for signature 'lmdme'
fitted.values(object, term=NULL,
drop=TRUE)
## S4 method for signature 'lmdme'
fitted(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
coef(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
coefficients(object, term=NULL,
drop=TRUE)
## S4 method for signature 'lmdme'
resid(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
residuals(object, term=NULL, drop=TRUE)
F.p.values(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
F.p.values(object, term=NULL,
drop=TRUE)
p.values(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
p.values(object, term=NULL, drop=TRUE)
modelDecomposition(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
modelDecomposition(object, term=NULL,
drop=TRUE)
components(object, term=NULL, drop=TRUE)
## S4 method for signature 'lmdme'
components(object, term=NULL,
drop=TRUE)
componentsType(object)
## S4 method for signature 'lmdme'
componentsType(object)
model(object)
## S4 method for signature 'lmdme'
model(object)
design(object)
## S4 method for signature 'lmdme'
design(object)
|
object |
lmdme class object. |
term |
character with the corresponding term/s to return. Default value is NULL in order to return every available term/s. |
drop |
should try to drop list structure if length==1? Default value is TRUE |
according to the call one of the following objects can be returned
design |
experiment design data.frame used. |
model |
decomposed formula used. |
modelDecomposition |
list of decomposed model formulas. |
residuals, resid, coef, coefficients,
fitted, fitted.values, p.values or F.p.values |
list of appropriate slot where each item is a matrix that will have G rows (individuals) x k columns (levels of the corresponding model term). |
components |
list with corresponding PCA or PLSR terms according to the decomposition function call. |
componentsType |
character name vector with the information of the component calculations. |
Cristobal Fresno and Elmer A Fernandez
lmdme
, decomposition
,
print
, show
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | {
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)
##Let's inspect how the decomposition process was carried out:
##a) The model formula used
##b) The design data.frame used
##c) The decomposition itself
fit.model<-model(fit)
fit.design<-design(fit)
fit.modelDecomposition<-modelDecomposition(fit)
##Getting the specific "time" term coefficients, p-values or F-values.
## Omit "term" parameter for all available terms.
timeCoef<-coef(fit,term="time")
fit.p.values<-p.values(fit,term="time")
fit.f.values<-F.p.values(fit,term="time")
##Getting the residuals or fitted values, for the interaction "time:oxygen"
## term. Omit "term" parameter for all available terms.
interactionResid<-resid(fit, term="time:oxygen")
interactionFit<-fitted(fit, term="time:oxygen")
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.