R/learn.R

Defines functions learn

Documented in learn

#' Estimate model parameters.
#'
#' Estimates parameters for a given model from a set of data.
#'
#' @param x An object. See the individual method for specifics.
#' @param ... other arguments passed to methods
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("learn")}
#'
#' @export
learn <- function(x, ...) {
  UseMethod("learn")
}

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.