| 1234567891011121314151617181920212223242526 |
- % 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.
- }
|