2017-02-22 23:59:43 +00:00
|
|
|
Package: prophet
|
|
|
|
|
Title: Automatic Forecasting Procedure
|
2019-05-14 06:00:12 +00:00
|
|
|
Version: 0.5
|
|
|
|
|
Date: 2019-05-15
|
2017-02-22 23:59:43 +00:00
|
|
|
Authors@R: c(
|
2019-05-14 06:00:12 +00:00
|
|
|
person("Sean", "Taylor", email = "sjtz@pm.me", role = c("cre", "aut")),
|
2017-02-22 23:59:43 +00:00
|
|
|
person("Ben", "Letham", email = "bletham@fb.com", role = "aut")
|
|
|
|
|
)
|
|
|
|
|
Description: Implements a procedure for forecasting time series data based on
|
2018-05-31 00:02:47 +00:00
|
|
|
an additive model where non-linear trends are fit with yearly, weekly, and
|
|
|
|
|
daily seasonality, plus holiday effects. It works best with time series
|
|
|
|
|
that have strong seasonal effects and several seasons of historical data.
|
|
|
|
|
Prophet is robust to missing data and shifts in the trend, and typically
|
|
|
|
|
handles outliers well.
|
2017-02-22 23:59:43 +00:00
|
|
|
Depends:
|
|
|
|
|
R (>= 3.2.3),
|
2018-12-03 21:54:08 +00:00
|
|
|
Rcpp (>= 0.12.0),
|
|
|
|
|
rlang (>= 0.3.0.1)
|
2017-02-22 23:59:43 +00:00
|
|
|
Imports:
|
2019-05-06 23:44:48 +00:00
|
|
|
dplyr (>= 0.7.7),
|
2018-06-02 15:39:07 +00:00
|
|
|
dygraphs (>= 1.1.1.4),
|
2017-02-22 23:59:43 +00:00
|
|
|
extraDistr,
|
|
|
|
|
ggplot2,
|
|
|
|
|
grid,
|
2017-03-05 15:09:18 +00:00
|
|
|
rstan (>= 2.14.0),
|
2017-02-22 23:59:43 +00:00
|
|
|
scales,
|
|
|
|
|
stats,
|
2018-06-15 01:42:11 +00:00
|
|
|
tidyr (>= 0.6.1),
|
|
|
|
|
xts
|
2017-02-22 23:59:43 +00:00
|
|
|
Suggests:
|
|
|
|
|
knitr,
|
|
|
|
|
testthat,
|
|
|
|
|
readr
|
2019-05-21 18:40:04 +00:00
|
|
|
License: MIT + file LICENSE
|
2018-12-04 01:01:01 +00:00
|
|
|
URL: https://github.com/facebook/prophet
|
|
|
|
|
BugReports: https://github.com/facebook/prophet/issues
|
2017-02-22 23:59:43 +00:00
|
|
|
LazyData: true
|
2018-12-01 07:12:19 +00:00
|
|
|
RoxygenNote: 6.1.1
|
2017-02-22 23:59:43 +00:00
|
|
|
VignetteBuilder: knitr
|
2017-09-12 16:31:34 +00:00
|
|
|
SystemRequirements: C++11
|
2018-04-19 00:06:39 +00:00
|
|
|
Encoding: UTF-8
|