regressor_column_matrix.Rd 974 B

123456789101112131415161718192021222324252627282930
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/prophet.R
  3. \name{regressor_column_matrix}
  4. \alias{regressor_column_matrix}
  5. \title{Dataframe indicating which columns of the feature matrix correspond to
  6. which seasonality/regressor components.}
  7. \usage{
  8. regressor_column_matrix(m, seasonal.features, modes)
  9. }
  10. \arguments{
  11. \item{m}{Prophet object.}
  12. \item{seasonal.features}{Constructed seasonal features dataframe.}
  13. \item{modes}{List with keys 'additive' and 'multiplicative' with arrays of
  14. component names for each mode of seasonality.}
  15. }
  16. \value{
  17. List with items
  18. component.cols: A binary indicator dataframe with columns seasonal
  19. components and rows columns in seasonal.features. Entry is 1 if that
  20. column is used in that component.
  21. modes: Updated input with combination components.
  22. }
  23. \description{
  24. Includes combination components, like 'additive_terms'. These combination
  25. components will be added to the 'modes' input.
  26. }
  27. \keyword{internal}