View source: R/HoltWintersNew.R
| ses | R Documentation |
Returns forecasts and other information for exponential smoothing forecasts
applied to y.
ses(
y,
h = 10,
level = c(80, 95),
fan = FALSE,
initial = c("optimal", "simple"),
alpha = NULL,
lambda = NULL,
biasadj = FALSE,
x = y,
...
)
holt(
y,
h = 10,
damped = FALSE,
level = c(80, 95),
fan = FALSE,
initial = c("optimal", "simple"),
exponential = FALSE,
alpha = NULL,
beta = NULL,
phi = NULL,
lambda = NULL,
biasadj = FALSE,
x = y,
...
)
hw(
y,
h = 2 * frequency(x),
seasonal = c("additive", "multiplicative"),
damped = FALSE,
level = c(80, 95),
fan = FALSE,
initial = c("optimal", "simple"),
exponential = FALSE,
alpha = NULL,
beta = NULL,
gamma = NULL,
phi = NULL,
lambda = NULL,
biasadj = FALSE,
x = y,
...
)
y |
a numeric vector or univariate time series of class |
h |
Number of periods for forecasting. Default value is twice the largest seasonal period (for seasonal data) or ten (for non-seasonal data). |
level |
Confidence levels for prediction intervals. |
fan |
If |
initial |
Method used for selecting initial state values. If
|
alpha |
Value of smoothing parameter for the level. If |
lambda |
Box-Cox transformation parameter. If |
biasadj |
Use adjusted back-transformed mean for Box-Cox
transformations. If transformed data is used to produce forecasts and fitted
values, a regular back transformation will result in median forecasts. If
biasadj is |
x |
Deprecated. Included for backwards compatibility. |
... |
Other arguments passed to |
damped |
If |
exponential |
If |
beta |
Value of smoothing parameter for the trend. If |
phi |
Value of damping parameter if |
seasonal |
Type of seasonality in |
gamma |
Value of smoothing parameter for the seasonal component. If
|
ses, holt and hw are simply convenient wrapper functions for
forecast(ets(...)).
An object of class forecast.
An object of class forecast is a list usually containing at least
the following elements:
A list containing information about the fitted model
The name of the forecasting method as a character string
Point forecasts as a time series
Lower limits for prediction intervals
Upper limits for prediction intervals
The confidence values associated with the prediction intervals
The original time series.
Residuals from the fitted model. For models with additive errors, the residuals will be x minus the fitted values.
Fitted values (one-step forecasts)
The function summary can be used to obtain and print a summary of the
results, while the functions plot and autoplot produce plots of the forecasts and
prediction intervals. The generic accessor functions fitted.values and residuals
extract various useful features from the underlying model.
Rob J Hyndman
Hyndman, R.J., Koehler, A.B., Ord, J.K., Snyder, R.D. (2008) Forecasting with exponential smoothing: the state space approach, Springer-Verlag: New York. https://robjhyndman.com/expsmooth/.
Hyndman and Athanasopoulos (2018) Forecasting: principles and practice, 2nd edition, OTexts: Melbourne, Australia. https://otexts.com/fpp2/
ets(), stats::HoltWinters(), rwf(), stats::arima().
fcast <- holt(airmiles)
plot(fcast)
deaths.fcast <- hw(USAccDeaths, h = 48)
plot(deaths.fcast)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.