mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-17 21:10:45 +00:00
37 lines
944 B
R
37 lines
944 B
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/plot.R
|
|
\name{dyplot.prophet}
|
|
\alias{dyplot.prophet}
|
|
\title{Plot the prophet forecast.}
|
|
\usage{
|
|
dyplot.prophet(x, fcst, uncertainty = TRUE, ...)
|
|
}
|
|
\arguments{
|
|
\item{x}{Prophet object.}
|
|
|
|
\item{fcst}{Data frame returned by predict(m, df).}
|
|
|
|
\item{uncertainty}{Optional boolean indicating if the uncertainty interval for yhat
|
|
should be plotted, which will only be done if x$uncertainty.samples > 0. Must be
|
|
present in fcst as yhat_lower and yhat_upper.}
|
|
|
|
\item{...}{additional arguments passed to dygraph::dygraph}
|
|
}
|
|
\value{
|
|
A dygraph plot.
|
|
}
|
|
\description{
|
|
Plot the prophet forecast.
|
|
}
|
|
\examples{
|
|
\dontrun{
|
|
history <- data.frame(
|
|
ds = seq(as.Date('2015-01-01'), as.Date('2016-01-01'), by = 'd'),
|
|
y = sin(1:366/200) + rnorm(366)/10)
|
|
m <- prophet(history)
|
|
future <- make_future_dataframe(m, periods = 365)
|
|
forecast <- predict(m, future)
|
|
dyplot.prophet(m, forecast)
|
|
}
|
|
|
|
}
|