DESCRIPTION 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Package: prophet
  2. Title: Automatic Forecasting Procedure
  3. Version: 0.3.0.1
  4. Date: 2018-06-13
  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, weekly, and
  11. daily seasonality, plus holiday effects. It works best with time series
  12. that have strong seasonal effects and several seasons of historical data.
  13. Prophet is robust to missing data and shifts in the trend, and typically
  14. handles outliers well.
  15. Depends:
  16. R (>= 3.2.3),
  17. Rcpp (>= 0.12.0)
  18. Imports:
  19. dplyr (>= 0.5.0),
  20. dygraphs (>= 1.1.1.4),
  21. extraDistr,
  22. ggplot2,
  23. grid,
  24. rstan (>= 2.14.0),
  25. scales,
  26. stats,
  27. tidyr (>= 0.6.1)
  28. Suggests:
  29. knitr,
  30. testthat,
  31. readr
  32. License: BSD_3_clause + file LICENSE
  33. LazyData: true
  34. RoxygenNote: 6.0.1
  35. VignetteBuilder: knitr
  36. SystemRequirements: C++11
  37. Encoding: UTF-8