plot_forecast_component.Rd 660 B

12345678910111213141516171819202122232425
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{plot_forecast_component}
  4. \alias{plot_forecast_component}
  5. \title{Plot a particular component of the forecast.}
  6. \usage{
  7. plot_forecast_component(fcst, name, uncertainty = TRUE, plot_cap = FALSE)
  8. }
  9. \arguments{
  10. \item{fcst}{Dataframe output of `predict`.}
  11. \item{name}{String name of the component to plot (column of fcst).}
  12. \item{uncertainty}{Boolean to plot uncertainty intervals.}
  13. \item{plot_cap}{Boolean indicating if the capacity should be shown in the
  14. figure, if available.}
  15. }
  16. \value{
  17. A ggplot2 plot.
  18. }
  19. \description{
  20. Plot a particular component of the forecast.
  21. }