This function can estimate random effect for a given set of model estimates and new user data. The unit may be new to the model. The methods implements the EB estimate (also known as BLUP) as described in Skrondral and Rabe-Hasketh, 2009, p. 683. This function can also provide the broken stick estimate for a given level, the sum of the global (fixed) and individual (random) effects. The current implementation does not provide prediction errors.
Arguments
- model
An object of class
brokenstick
.- y
A vector of new measurements for unit j, scaled in the same metric as the fitted model.
- X
A
nj * p
matrix with fixed effects for unit j, typically produced bybs()
.- Z
A
nj * q
matrix with random effects for unit j. The default setsZ
equal toX
.- BS
A logical indicating whether broken stick estimates should be returned (
BS = TRUE
) or the random effects (BS = FALSE
). The default isTRUE
.