R/fit_xy.R

Defines functions fit_xy

Documented in fit_xy

#' Estimate model parameters.
#'
#' Estimates parameters for a given model from a set of data in the form of
#'  a set of predictors (`x`) and outcome(s) (`y`).
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("fit_xy")}
#'
#' @inheritParams compile
#' @export
fit_xy <- function(object, ...) {
  UseMethod("fit_xy")
}

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.