Update documentation for additional stan args

This commit is contained in:
Ben Letham 2017-02-26 13:04:15 +02:00
parent 00a02b07b4
commit 96ef0e236a
2 changed files with 2 additions and 2 deletions

View file

@ -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.}

View file

@ -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.