mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-06-06 00:03:25 +00:00
41 lines
1.1 KiB
Text
41 lines
1.1 KiB
Text
Package: prophet
|
|
Title: Automatic Forecasting Procedure
|
|
Version: 0.5
|
|
Date: 2019-05-15
|
|
Authors@R: c(
|
|
person("Sean", "Taylor", email = "sjtz@pm.me", role = c("cre", "aut")),
|
|
person("Ben", "Letham", email = "bletham@fb.com", role = "aut")
|
|
)
|
|
Description: Implements a procedure for forecasting time series data based on
|
|
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.
|
|
Depends:
|
|
R (>= 3.2.3),
|
|
Rcpp (>= 0.12.0),
|
|
rlang (>= 0.3.0.1)
|
|
Imports:
|
|
dplyr (>= 0.7.7),
|
|
dygraphs (>= 1.1.1.4),
|
|
extraDistr,
|
|
ggplot2,
|
|
grid,
|
|
rstan (>= 2.14.0),
|
|
scales,
|
|
stats,
|
|
tidyr (>= 0.6.1),
|
|
xts
|
|
Suggests:
|
|
knitr,
|
|
testthat,
|
|
readr
|
|
License: MIT + file LICENSE
|
|
URL: https://github.com/facebook/prophet
|
|
BugReports: https://github.com/facebook/prophet/issues
|
|
LazyData: true
|
|
RoxygenNote: 6.1.1
|
|
VignetteBuilder: knitr
|
|
SystemRequirements: C++11
|
|
Encoding: UTF-8
|