Learn R Programming

VCA (version 1.5.1)

coef.VCA: 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 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

Run this code
if (FALSE) {
data(dataEP05A2_1)
fit1 <- anovaMM(y~day/(run), dataEP05A2_1)
coef(fit1)
fit2 <- anovaVCA(y~day/run, dataEP05A2_1)
coef(fit2)
}

Run the code above in your browser using DataLab