R/prepare.R

Defines functions prepare

Documented in prepare

#' Prepare data for sandwich smooth
#'
#' A generic function to prepare various types of data.  See
#' the functions linked in See Also.
#'
#' @param data The data to prepare
#' @param ... Not implemented
#'
#' @return A prepared object
#' @seealso \code{\link{prepare.numeric}},
#' \code{\link{prepare.matrix}},
#' \code{\link{prepare.array}},
#' \code{\link{prepare.sts}},
#' \code{\link{prepare.starray}}
#' @export
prepare = function(data, ...) {
  UseMethod("prepare", data)
}

Try the hero package in your browser

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

hero documentation built on July 26, 2023, 5:11 p.m.