| ts_fil_ses | R Documentation |
Exponential smoothing focused on the level component, with optional extensions to trend/seasonality via Holt–Winters variants.
ts_fil_ses(gamma = FALSE)
gamma |
If TRUE, enables the gamma seasonality component. |
A ts_fil_ses object.
R. G. Brown (1959). Statistical Forecasting for Inventory Control.
# time series with noise
library(daltoolbox)
data(tsd)
tsd$y[9] <- 2*tsd$y[9]
# filter
filter <- ts_fil_ses()
filter <- fit(filter, tsd$y)
y <- transform(filter, tsd$y)
# plot
plot_ts_pred(y=tsd$y, yadj=y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.