make_future_dataframe.Rd 761 B

1234567891011121314151617181920212223242526
  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 = "day", 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', 'year', 1(1 sec), 60(1 minute) or 3600(1 hour).}
  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. }