coef.VCA {VCA} | R Documentation |
Extract Fixed Effects from 'VCA' Object
Description
For conveniently using objects of class 'VCA' with other packages expecting this function, e.g. the 'multcomp' package for general linear hypotheses for parametric models (currently not fully implemented).
Usage
## S3 method for class 'VCA'
coef(object, quiet = FALSE, ...)
Arguments
object |
(VCA) object where fixed effects shall be extracted |
quiet |
(logical) TRUE = will suppress any warning, which will be issued otherwise |
... |
additional parameters |
Examples
## Not run:
data(dataEP05A2_1)
fit1 <- anovaMM(y~day/(run), dataEP05A2_1)
coef(fit1)
fit2 <- anovaVCA(y~day/run, dataEP05A2_1)
coef(fit2)
## End(Not run)
[Package VCA version 1.5.1 Index]