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)
  v <- fit$var
  if(! length(v)) {
    v <- fit$info.matrix
    attr(v, 'intercepts') <- if(length(v) && length(v$ab)) nrow(v$ab)
  }
  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
}

Try the Hmisc package in your browser

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

Hmisc documentation built on April 3, 2025, 11:53 p.m.