| coefGets {lme4} | R Documentation |
A generic function to assign the parameter vector in an object. For
historical reasons parameters are accessed with coef and
assigned with coef<-.
coef(object) <- value
object |
An object that has a numeric parameter vector accessed
by coef. |
value |
A numeric vector of the same length as coef(object). |
object with an updated parameter vector
Douglas Bates bates@stat.wisc.edu and Saikat DebRoy saikat@stat.wisc.edu
m1 <- pdLogChol(~ age) coef(m1) <- rnorm(3) m1