R/residual_plot.R

Defines functions residual_plot

Documented in residual_plot

#' Plot residuals of a fitted model
#'
#' \code{residual_plot} plots the residuals of a fitted model.
#'
#' @param model A fitted model.
#' @param ... Currently unimplemented.
#' @author Joshua French
#' @export
#' @examples
#' lmod <- lm(Girth ~ Height, data = trees)
#' residual_plot(lmod)
#' @export
residual_plot <- function(model, ...) {
  UseMethod("residual_plot")
}

Try the api2lm package in your browser

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

api2lm documentation built on July 9, 2023, 5:52 p.m.