prophet/R/man/simulated_historical_forecasts.Rd
2017-08-26 14:31:33 -07:00

30 lines
927 B
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/diagnostics.R
\name{simulated_historical_forecasts}
\alias{simulated_historical_forecasts}
\title{Simulated historical forecasts.
Make forecasts from k historical cutoff dates, and compare forecast values
to actual values.}
\usage{
simulated_historical_forecasts(model, horizon, units, k, period = NULL)
}
\arguments{
\item{model}{Fitted Prophet model.}
\item{horizon}{Integer size of the horizon}
\item{units}{String unit of the horizon, e.g., "days", "secs".}
\item{k}{integer number of forecast points}
\item{period}{Integer amount of time between cutoff dates. Same units as
horizon. If not provided, will use 0.5 * horizon.}
}
\value{
A dataframe with the forecast, actual value, and cutoff date.
}
\description{
Simulated historical forecasts.
Make forecasts from k historical cutoff dates, and compare forecast values
to actual values.
}