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 Aug. 21, 2023, 9:10 a.m.