make_future_dataframe.Rd 723 B

123456789101112131415161718192021222324252627
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{make_future_dataframe}
  4. \alias{make_future_dataframe}
  5. \title{Make dataframe with future dates for forecasting.}
  6. \usage{
  7. make_future_dataframe(m, periods, freq = "d", include_history = TRUE)
  8. }
  9. \arguments{
  10. \item{m}{Prophet model object.}
  11. \item{periods}{Int number of periods to forecast forward.}
  12. \item{freq}{'day', 'week', 'month', 'quarter', or 'year'.}
  13. \item{include_history}{Boolean to include the historical dates in the data
  14. frame for predictions.}
  15. }
  16. \value{
  17. Dataframe that extends forward from the end of m$history for the
  18. requested number of periods.
  19. }
  20. \description{
  21. Make dataframe with future dates for forecasting.
  22. }