set_auto_seasonalities.Rd 659 B

1234567891011121314151617181920212223
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{set_auto_seasonalities}
  4. \alias{set_auto_seasonalities}
  5. \title{Set seasonalities that were left on auto.}
  6. \usage{
  7. set_auto_seasonalities(m)
  8. }
  9. \arguments{
  10. \item{m}{Prophet object.}
  11. }
  12. \value{
  13. The prophet model with seasonalities set.
  14. }
  15. \description{
  16. Turns on yearly seasonality if there is >=2 years of history.
  17. Turns on weekly seasonality if there is >=2 weeks of history, and the
  18. spacing between dates in the history is <7 days.
  19. Turns on daily seasonality if there is >=2 days of history, and the spacing
  20. between dates in the history is <1 day.
  21. }
  22. \keyword{internal}