1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/prophet.R
\name{fourier_series}
\alias{fourier_series}
\title{Provides Fourier series components with the specified frequency and order.}
\usage{
fourier_series(dates, period, series.order)
}
\arguments{
\item{dates}{Vector of dates.}
\item{period}{Number of days of the period.}
\item{series.order}{Number of components.}
}
\value{
Matrix with seasonality features.
}
\description{
Provides Fourier series components with the specified frequency and order.
}
\keyword{internal}
|