DESCRIPTION 959 B

1234567891011121314151617181920212223242526272829303132333435
  1. Package: prophet
  2. Title: Automatic Forecasting Procedure
  3. Version: 0.2.1.9000
  4. Date: 2017-11-08
  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 (>= 2.14.0),
  23. scales,
  24. stats,
  25. tidyr (>= 0.6.1)
  26. Suggests:
  27. knitr,
  28. testthat,
  29. readr
  30. License: BSD_3_clause + file LICENSE
  31. LazyData: true
  32. RoxygenNote: 6.0.1
  33. VignetteBuilder: knitr
  34. SystemRequirements: C++11