R/forecast.R

Defines functions forecast

Documented in forecast

#' Forecasting from an object
#'
#' The functions allow producing forecasts based on the provided object.
#'
#' @param object A model for which forecasts are required.
#' @param ... Other arguments passed to methods
#'
#' @section Methods:
#' \Sexpr[stage=render,results=rd]{generics:::methods_rd("forecast")}
#'
#' @export
forecast <- function(object, ...) {
  UseMethod("forecast")
}

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.