powered by
Estimation of Simple Exponential Smoothing Method
expSmoot(y, h=5, ell0=NULL, alpha=NULL, lower = c(-1e+10, 0.1), upper = c(1e+10, 0.99))
A list containing the elements:
The original time series.
The estimated values for (ell^*, alpha) parameters
(ell^*, alpha)
The forecasting values
A time series element with the fitted points.
A time series element with the residual points.
Object of time series class.
Number of required forecasting periods.
The value of ell0^* parameter.
ell0^*
The value of alpha parameter.
alpha
The lower limit of parametric space.
The upper limit of parametric space.
Jose Augusto Fiorucci, Francisco Louzada and Bao Yiqi
forecTheta-package, stheta, dotm
forecTheta-package
stheta
dotm
y1 = 2+ 0.15*(1:20) + rnorm(20,2) y2 = y1[20]+ 0.3*(1:30) + rnorm(30,2) y = as.ts(c(y1,y2)) expSmoot(y, h=10)
Run the code above in your browser using DataLab