R/glm.methods.q

Defines functions designMD.glmRob family.glmRob print.glmRob model.frame.glmRob model.matrix.glmRob residuals.glmRob

Documented in residuals.glmRob

residuals.glmRob <- function(object, ...)
{
  oldClass(object) <- "glm"
  residuals(object)
}


model.matrix.glmRob <- function(object, ...)
{
  oldClass(object) <- "lm"
  model.matrix(object)
}


model.frame.glmRob <- function(formula, ...)
{
  oldClass(formula) <- "glm"
  model.frame(formula)
}


print.glmRob <- function(x, ...) 
{
  oldClass(x) <- "glm"
  print(x)
}


family.glmRob <- function(object, ...)
{
  oldClass(object) <- "glm"
  family(object)
}


designMD.glmRob <- function(object, ...)
robMD2(object)

Try the robust package in your browser

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

robust documentation built on July 9, 2023, 6:14 p.m.