R/fitted.sgd.R

Defines functions fitted.sgd

Documented in fitted.sgd

#' Extract Model Fitted Values
#'
#' Extract fitted values from from \code{sgd} objects.
#' \code{fitted.values} is an \emph{alias} for it.
#'
#' @param object object of class \code{sgd}.
#' @param \dots some methods for this generic require additional
#'   arguments. None are used in this method.
#'
#' @return
#' Fitted values extracted from the object \code{object}.
#'
#' @export
fitted.sgd <- function(object, ...) {
  return(object$fitted.values)
}

Try the sgd package in your browser

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

sgd documentation built on July 13, 2019, 1:06 a.m.