prophet/R/man/make_all_seasonality_features.Rd

31 lines
993 B
Text
Raw Normal View History

2017-02-22 23:59:43 +00:00
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/prophet.R
\name{make_all_seasonality_features}
\alias{make_all_seasonality_features}
2017-08-30 23:17:41 +00:00
\title{Dataframe with seasonality features.
Includes seasonality features, holiday features, and added regressors.}
2017-02-22 23:59:43 +00:00
\usage{
make_all_seasonality_features(m, df)
}
\arguments{
\item{m}{Prophet object.}
2017-08-30 23:17:41 +00:00
\item{df}{Dataframe with dates for computing seasonality features and any
added regressors.}
2017-02-22 23:59:43 +00:00
}
\value{
2017-08-30 23:17:41 +00:00
List with items
seasonal.features: Dataframe with regressor features,
2021-08-03 01:37:45 +00:00
prior.scales: Array of prior scales for each column of the features
2017-08-30 23:17:41 +00:00
dataframe.
2018-05-15 17:07:38 +00:00
component.cols: Dataframe with indicators for which regression components
correspond to which columns.
modes: List with keys 'additive' and 'multiplicative' with arrays of
component names for each mode of seasonality.
2017-02-22 23:59:43 +00:00
}
\description{
Dataframe with seasonality features.
2017-08-30 23:17:41 +00:00
Includes seasonality features, holiday features, and added regressors.
2017-02-22 23:59:43 +00:00
}
\keyword{internal}