gum {smooth} | R Documentation |
Generalised Univariate Model
Description
Function constructs Generalised Univariate Model, estimating matrices F, w, vector g and initial parameters.
Usage
gum(y, orders = c(1, 1), lags = c(1, frequency(y)), type = c("additive",
"multiplicative"), persistence = NULL, transition = NULL,
measurement = rep(1, sum(orders)), initial = c("optimal", "backcasting"),
ic = c("AICc", "AIC", "BIC", "BICc"), loss = c("likelihood", "MSE",
"MAE", "HAM", "MSEh", "TMSE", "GTMSE", "MSCE"), h = 10, holdout = FALSE,
cumulative = FALSE, interval = c("none", "parametric", "likelihood",
"semiparametric", "nonparametric"), level = 0.95,
bounds = c("restricted", "admissible", "none"), silent = c("all",
"graph", "legend", "output", "none"), xreg = NULL, regressors = c("use",
"select"), initialX = NULL, ...)
ges(...)
Arguments
y |
Vector or ts object, containing data needed to be forecasted. |
orders |
Order of the model. Specified as vector of number of states
with different lags. For example, |
lags |
Defines lags for the corresponding orders. If, for example,
|
type |
Type of model. Can either be |
persistence |
Persistence vector |
transition |
Transition matrix |
measurement |
Measurement vector |
initial |
Can be either character or a vector of initial states. If it
is character, then it can be |
ic |
The information criterion used in the model selection procedure. |
loss |
The type of Loss Function used in optimization. There are also available analytical approximations for multistep functions:
Finally, just for fun the absolute and half analogues of multistep estimators
are available: |
h |
Length of forecasting horizon. |
holdout |
If |
cumulative |
If |
interval |
Type of interval to construct. This can be:
The parameter also accepts |
level |
Confidence level. Defines width of prediction interval. |
bounds |
What type of bounds to use in the model estimation. The first letter can be used instead of the whole word. |
silent |
If |
xreg |
The vector (either numeric or time series) or the matrix (or
data.frame) of exogenous variables that should be included in the model. If
matrix included than columns should contain variables and rows - observations.
Note that |
regressors |
The variable defines what to do with the provided xreg:
|
initialX |
The vector of initial parameters for exogenous variables.
Ignored if |
... |
Other non-documented parameters. For example parameter
|
Details
The function estimates the Single Source of Error state space model of the following type:
y_{t} = o_{t} (w' v_{t-l} + x_t a_{t-1} + \epsilon_{t})
v_{t} = F v_{t-l} + g \epsilon_{t}
a_{t} = F_{X} a_{t-1} + g_{X} \epsilon_{t} / x_{t}
Where o_{t}
is the Bernoulli distributed random variable (in case of
normal data equal to 1), v_{t}
is the state vector (defined using
orders
) and l
is the vector of lags
, x_t
is the
vector of exogenous parameters. w
is the measurement
vector,
F
is the transition
matrix, g
is the persistence
vector, a_t
is the vector of parameters for exogenous variables,
F_{X}
is the transitionX
matrix and g_{X}
is the
persistenceX
matrix. Finally, \epsilon_{t}
is the error term.
For some more information about the model and its implementation, see the
vignette: vignette("gum","smooth")
Value
Object of class "smooth" is returned. It contains:
-
model
- name of the estimated model. -
timeElapsed
- time elapsed for the construction of the model. -
states
- matrix of fuzzy components of GUM, whererows
correspond to time andcols
to states. -
initialType
- Type of the initial values used. -
initial
- initial values of state vector (extracted fromstates
). -
nParam
- table with the number of estimated / provided parameters. If a previous model was reused, then its initials are reused and the number of provided parameters will take this into account. -
measurement
- matrix w. -
transition
- matrix F. -
persistence
- persistence vector. This is the place, where smoothing parameters live. -
fitted
- fitted values. -
forecast
- point forecast. -
lower
- lower bound of prediction interval. Wheninterval="none"
then NA is returned. -
upper
- higher bound of prediction interval. Wheninterval="none"
then NA is returned. -
residuals
- the residuals of the estimated model. -
errors
- matrix of 1 to h steps ahead errors. Only returned when the multistep losses are used and semiparametric interval is needed. -
s2
- variance of the residuals (taking degrees of freedom into account). -
interval
- type of interval asked by user. -
level
- confidence level for interval. -
cumulative
- whether the produced forecast was cumulative or not. -
y
- original data. -
holdout
- holdout part of the original data. -
xreg
- provided vector or matrix of exogenous variables. Ifregressors="s"
, then this value will contain only selected exogenous variables. -
initialX
- initial values for parameters of exogenous variables. -
ICs
- values of information criteria of the model. Includes AIC, AICc, BIC and BICc. -
logLik
- log-likelihood of the function. -
lossValue
- Cost function value. -
loss
- Type of loss function used in the estimation. -
FI
- Fisher Information. Equal to NULL ifFI=FALSE
or whenFI
variable is not provided at all. -
accuracy
- vector of accuracy measures for the holdout sample. In case of non-intermittent data includes: MPE, MAPE, SMAPE, MASE, sMAE, RelMAE, sMSE and Bias coefficient (based on complex numbers). In case of intermittent data the set of errors will be: sMSE, sPIS, sCE (scaled cumulative error) and Bias coefficient. This is available only whenholdout=TRUE
. -
B
- the vector of all the estimated parameters.
Author(s)
Ivan Svetunkov, ivan@svetunkov.ru
References
Svetunkov I. (2023) Smooth forecasting with the smooth package in R. arXiv:2301.01790. doi:10.48550/arXiv.2301.01790.
Svetunkov I. (2015 - Inf) "smooth" package for R - series of posts about the underlying models and how to use them: https://openforecast.org/category/r-en/smooth/.
Taylor, J.W. and Bunn, D.W. (1999) A Quantile Regression Approach to Generating Prediction Intervals. Management Science, Vol 45, No 2, pp 225-237.
Lichtendahl Kenneth C., Jr., Grushka-Cockayne Yael, Winkler Robert L., (2013) Is It Better to Average Probabilities or Quantiles? Management Science 59(7):1594-1611. DOI: doi:10.1287/mnsc.1120.1667
See Also
Examples
# Something simple:
gum(rnorm(118,100,3),orders=c(1),lags=c(1),h=18,holdout=TRUE,bounds="a",interval="p")
# A more complicated model with seasonality
ourModel <- gum(rnorm(118,100,3),orders=c(2,1),lags=c(1,4),h=18,holdout=TRUE)
# Redo previous model on a new data and produce prediction interval
gum(rnorm(118,100,3),model=ourModel,h=18,interval="sp")
# Produce something crazy with optimal initials (not recommended)
gum(rnorm(118,100,3),orders=c(1,1,1),lags=c(1,3,5),h=18,holdout=TRUE,initial="o")
# Simpler model estiamted using trace forecast error loss function and its analytical analogue
gum(rnorm(118,100,3),orders=c(1),lags=c(1),h=18,holdout=TRUE,bounds="n",loss="TMSE")
gum(rnorm(118,100,3),orders=c(1),lags=c(1),h=18,holdout=TRUE,bounds="n",loss="aTMSE")
# Introduce exogenous variables
gum(rnorm(118,100,3),orders=c(1),lags=c(1),h=18,holdout=TRUE,xreg=c(1:118))
# Or select the most appropriate one
gum(rnorm(118,100,3),orders=c(1),lags=c(1),h=18,holdout=TRUE,xreg=c(1:118),regressors="s")
summary(ourModel)
forecast(ourModel)
plot(forecast(ourModel))