prophet/R/DESCRIPTION

39 lines
1 KiB
Text
Raw Normal View History

2017-02-22 23:59:43 +00:00
Package: prophet
Title: Automatic Forecasting Procedure
Version: 0.3.0.1
Date: 2018-06-13
2017-02-22 23:59:43 +00:00
Authors@R: c(
person("Sean", "Taylor", email = "sjt@fb.com", role = c("cre", "aut")),
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),
Rcpp (>= 0.12.0)
Imports:
dplyr (>= 0.5.0),
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
License: BSD_3_clause + file LICENSE
LazyData: true
RoxygenNote: 6.1.0
2017-02-22 23:59:43 +00:00
VignetteBuilder: knitr
SystemRequirements: C++11
Encoding: UTF-8