R/ivif.R

Defines functions ivif

Documented in ivif

ivif <- 
  function(lmobj) {
    vif <- diag(vcov(lmobj))*diag(solve(vcov(lmobj)))
    return(vif)
  }

Try the lmreg package in your browser

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

lmreg documentation built on May 2, 2019, 9:29 a.m.