R/get_df.R

Defines functions get_df.default get_df

#'@importFrom stats df.residual

get_df = function(model){
  UseMethod('get_df')
}


get_df.default = function(model){
  df.residual(model)
}

Try the paramhetero package in your browser

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

paramhetero documentation built on April 26, 2022, 1:06 a.m.