R/predict.expFamily.R

predict.expFamily <- function(object, b.hat, X, offset = 0, m, a, ...) {
  lin.pred <- as.matrix(X) %*% b.hat + offset
  y.hat <- unlink(object, lin.pred, m, a)
  return(y.hat)
}

Try the msme package in your browser

Any scripts or data that you put into this service are public.

msme documentation built on May 2, 2019, 5:07 a.m.