Satterthwaite Approximation for Total Degrees of Freedom and for Single Variance Components
SattDF(MS, Ci, DF, type = c("total", "individual"))
MS |
(numeric) vector of sequential mean squares (ANOVA type-1). |
Ci |
(matrix) where elements are numeric values representing the inverse of the coefficient
matrix for calculation of expected mean squares (see |
DF |
(numeric) vector with the degrees of freedom for each factor in a ANOVA type-1 model. |
type |
(character) string specifying whether "total" degrees of freedom should be approximated or those of individual variance components |
Function is used internally, thus, it is not exported. Option 'type="total"' is used in
functions anovaVCA
and anovaMM
for approximating total DF.
Option 'type="individual"' is used in function VCAinference
when choosing
'ci.method="satterthwaite"' for approximating DFs for individual variance components.
numeric value representing the Satterthwaite DFs of the total variance.
Andre Schuetzenmeister andre.schuetzenmeister@roche.com
## Not run: data(dataEP05A2_2) res <- anovaVCA(y~day/run, dataEP05A2_2) VCA:::SattDF(res$aov.tab[-1,"MS"], getMat(res, "Ci.MS"), res$aov.tab[-1,"DF"], type="tot") # now approximating individual DF for variance components VCA:::SattDF(res$aov.tab[-1,"MS"], getMat(res, "Ci.MS"), res$aov.tab[-1,"DF"], type="i") ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.