2017-02-22 23:59:43 +00:00
|
|
|
% Generated by roxygen2: do not edit by hand
|
|
|
|
|
% Please edit documentation in R/prophet.R
|
|
|
|
|
\name{make_future_dataframe}
|
|
|
|
|
\alias{make_future_dataframe}
|
|
|
|
|
\title{Make dataframe with future dates for forecasting.}
|
|
|
|
|
\usage{
|
2017-07-11 05:57:13 +00:00
|
|
|
make_future_dataframe(m, periods, freq = "day", include_history = TRUE)
|
2017-02-22 23:59:43 +00:00
|
|
|
}
|
|
|
|
|
\arguments{
|
|
|
|
|
\item{m}{Prophet model object.}
|
|
|
|
|
|
|
|
|
|
\item{periods}{Int number of periods to forecast forward.}
|
|
|
|
|
|
2017-07-11 05:57:13 +00:00
|
|
|
\item{freq}{'day', 'week', 'month', 'quarter', 'year', 1(1 sec), 60(1 minute) or 3600(1 hour).}
|
2017-02-22 23:59:43 +00:00
|
|
|
|
|
|
|
|
\item{include_history}{Boolean to include the historical dates in the data
|
|
|
|
|
frame for predictions.}
|
|
|
|
|
}
|
|
|
|
|
\value{
|
|
|
|
|
Dataframe that extends forward from the end of m$history for the
|
|
|
|
|
requested number of periods.
|
|
|
|
|
}
|
|
|
|
|
\description{
|
|
|
|
|
Make dataframe with future dates for forecasting.
|
|
|
|
|
}
|