prophet_plot_components.Rd 784 B

12345678910111213141516171819202122232425
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{prophet_plot_components}
  4. \alias{prophet_plot_components}
  5. \title{Plot the components of a prophet forecast.
  6. Prints a ggplot2 with panels for trend, weekly and yearly seasonalities if
  7. present, and holidays if present.}
  8. \usage{
  9. prophet_plot_components(m, fcst, uncertainty = TRUE)
  10. }
  11. \arguments{
  12. \item{m}{Prophet object.}
  13. \item{fcst}{Data frame returned by predict(m, df).}
  14. \item{uncertainty}{Boolean indicating if the uncertainty interval should be
  15. plotted for the trend, from fcst columns trend_lower and trend_upper.}
  16. }
  17. \description{
  18. Plot the components of a prophet forecast.
  19. Prints a ggplot2 with panels for trend, weekly and yearly seasonalities if
  20. present, and holidays if present.
  21. }