R/num.intercepts.s

Defines functions num.intercepts

Documented in num.intercepts

num.intercepts <- function(fit, type=c('fit', 'var', 'coef'))
{
  type <- match.arg(type)
  nrp <- fit$non.slopes
  if(!length(nrp))  {
    nm1 <- names(fit$coef)[1]
    nrp <- 1*(nm1=="Intercept" | nm1=="(Intercept)")
  }
  if(type == 'fit') return(nrp)
  w <- if(type == 'var') fit$var else fit$coefficients
  i <- attr(w, 'intercepts')
  li <- length(i)
  if(!li) return(nrp)
  if(li == 1 && i == 0) 0 else li
}
harrelfe/Hmisc documentation built on April 18, 2024, 11:06 p.m.