R/augment_generic.R

#' Generic function for augment
#'
#' see broom::augment for more informations
#' @param x object to be augmented
#' @param ... additional arguments
#' @export

augment <- function (x, ...) {
  UseMethod("augment", x)
}

Try the segclust2d package in your browser

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

segclust2d documentation built on May 29, 2024, 6:41 a.m.