diff --git a/R/man/fit.prophet.Rd b/R/man/fit.prophet.Rd index 9677c3a..fc1151c 100644 --- a/R/man/fit.prophet.Rd +++ b/R/man/fit.prophet.Rd @@ -4,7 +4,7 @@ \alias{fit.prophet} \title{Fit the prophet model.} \usage{ -fit.prophet(m, df) +fit.prophet(m, df, ...) } \arguments{ \item{m}{Prophet object.} diff --git a/R/man/prophet.Rd b/R/man/prophet.Rd index 5274458..0910596 100644 --- a/R/man/prophet.Rd +++ b/R/man/prophet.Rd @@ -9,7 +9,7 @@ prophet(df = df, growth = "linear", changepoints = NULL, weekly.seasonality = TRUE, holidays = NULL, seasonality.prior.scale = 10, changepoint.prior.scale = 0.05, holidays.prior.scale = 10, mcmc.samples = 0, interval.width = 0.8, - uncertainty.samples = 1000, fit = TRUE) + uncertainty.samples = 1000, fit = TRUE, ...) } \arguments{ \item{df}{Data frame with columns ds (date type) and y, the time series.