prophet/R/DESCRIPTION

53 lines
1.4 KiB
Text
Raw Normal View History

2017-02-22 23:59:43 +00:00
Package: prophet
Title: Automatic Forecasting Procedure
2020-08-18 00:43:55 +00:00
Version: 0.7
2020-02-10 03:16:05 +00:00
Date: 2020-02-10
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.
URL: https://github.com/facebook/prophet
BugReports: https://github.com/facebook/prophet/issues
2017-02-22 23:59:43 +00:00
Depends:
R (>= 3.4.0),
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,
methods,
rstan (>= 2.18.1),
rstantools (>= 2.0.0),
2017-02-22 23:59:43 +00:00
scales,
2020-09-03 01:40:30 +00:00
StanHeaders,
2017-02-22 23:59:43 +00:00
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,
rmarkdown
SystemRequirements: GNU make, C++11
Biarch: true
2019-05-21 18:40:04 +00:00
License: MIT + file LICENSE
LinkingTo:
BH (>= 1.66.0),
Rcpp (>= 0.12.0),
RcppEigen (>= 0.3.3.3.0),
rstan (>= 2.18.1),
StanHeaders (>= 2.18.0)
2017-02-22 23:59:43 +00:00
LazyData: true
VignetteBuilder: knitr
Encoding: UTF-8
2020-08-19 02:14:16 +00:00
RoxygenNote: 7.1.1