DESCRIPTION 915 B

123456789101112131415161718192021222324252627282930313233343536
  1. Package: prophet
  2. Title: Automatic Forecasting Procedure
  3. Version: 0.1
  4. Date: 2017-01-26
  5. Authors@R: c(
  6. person("Sean", "Taylor", email = "sjt@fb.com", role = c("cre", "aut")),
  7. person("Ben", "Letham", email = "bletham@fb.com", role = "aut")
  8. )
  9. Description: Implements a procedure for forecasting time series data based on
  10. an additive model where non-linear trends are fit with yearly and weekly
  11. seasonality, plus holidays. It works best with daily periodicity data with
  12. at least one year of historical data. Prophet is robust to missing data,
  13. shifts in the trend, and large outliers.
  14. Depends:
  15. R (>= 3.2.3),
  16. Rcpp (>= 0.12.0)
  17. Imports:
  18. dplyr (>= 0.5.0),
  19. extraDistr,
  20. ggplot2,
  21. grid,
  22. rstan,
  23. scales,
  24. stats,
  25. tidyr,
  26. utils,
  27. zoo
  28. Suggests:
  29. knitr,
  30. testthat,
  31. readr
  32. License: BSD_3_clause + file LICENSE
  33. LazyData: true
  34. RoxygenNote: 5.0.1
  35. VignetteBuilder: knitr