R/regress_diagnostics_TODO.R

Defines functions influence.measures.uRegress dffits.uRegress covratio.uRegress

# note that none of these work yet
covratio.uRegress <- function(object, ...) {
  
  stats::covratio(object$fit, ...)
  
}

dffits.uRegress <- function(object, ...) {
  
  stats::dffits(object$fit, ...)
  
}

influence.measures.uRegress <- function(object, ...) {
  
  stats::influence.measures(object$fit, ...)
  
}

Try the rigr package in your browser

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

rigr documentation built on Sept. 7, 2022, 1:05 a.m.