R/coef.mpcv.R

Defines functions coef.mpcv

Documented in coef.mpcv

coef.mpcv <- function(object, ...)
{
  vars <- rownames(as.matrix(object$coef.lo))
  Coef <- matrix(c(object$coef.lo[,5], object$coef.up[,5]), nrow=2, byrow=T, dimnames=list(c("coef.lo", "coef.up"),vars))
  return(Coef)
}

Try the mpcv package in your browser

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

mpcv documentation built on May 2, 2019, 8:50 a.m.