my.prophet {autoTS} | R Documentation |
Fit prophet algorithm and make the prediction
my.prophet(prepedTS, n_pred)
prepedTS |
A list created by the |
n_pred |
Int number of periods to forecast forward (eg n_pred = 12 will lead to one year of prediction for monthly time series) |
A dataframe for "next year" with 4 columns : date, average prediction, upper and lower 95
library(lubridate)
library(dplyr)
dates <- seq(as_date("2000-01-01"),as_date("2010-12-31"),"quarter")
values <- rnorm(length(dates))
my.ts <- prepare.ts(dates,values,"quarter",complete = 0)
my.prophet(my.ts,n_pred=4)