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
}

Try the Hmisc package in your browser

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

Hmisc documentation built on June 22, 2024, 12:19 p.m.