mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-16 21:00:16 +00:00
25 lines
761 B
R
25 lines
761 B
R
% 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{
|
|
make_future_dataframe(m, periods, freq = "day", include_history = TRUE)
|
|
}
|
|
\arguments{
|
|
\item{m}{Prophet model object.}
|
|
|
|
\item{periods}{Int number of periods to forecast forward.}
|
|
|
|
\item{freq}{'day', 'week', 'month', 'quarter', 'year', 1(1 sec), 60(1 minute) or 3600(1 hour).}
|
|
|
|
\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.
|
|
}
|