R/augment.R

Defines functions augment

Documented in augment

#' Augment data with information from an object
#'
#' @param x Model object or other R object with information to append to
#'   observations.
#' @param ... Addition arguments to `augment` method.
#' @return A [tibble::tibble()] with information about data points.
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("augment")}
#'
#' @export
#'
augment <- function(x, ...) {
  UseMethod("augment")
}

Try the generics package in your browser

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

generics documentation built on July 6, 2022, 1:08 a.m.