View source: R/loglikelihood.R
loglikelihood_int | R Documentation |
loglikelihood_int
computes log-likelihoodof a GMVAR, StMVAR, and G-StMVAR models.
loglikelihood_int(
data,
p,
M,
params,
model = c("GMVAR", "StMVAR", "G-StMVAR"),
conditional = TRUE,
parametrization = c("intercept", "mean"),
constraints = NULL,
same_means = NULL,
weight_constraints = NULL,
structural_pars = NULL,
to_return = c("loglik", "mw", "mw_tplus1", "loglik_and_mw", "terms", "regime_cmeans",
"regime_ccovs", "total_cmeans", "total_ccovs", "arch_scalars",
"loglik_mw_archscalars"),
check_params = TRUE,
minval = NULL,
stat_tol = 0.001,
posdef_tol = 1e-08,
df_tol = 1e-08
)
data |
a matrix or class |
p |
a positive integer specifying the autoregressive order of the model. |
M |
|
params |
a real valued vector specifying the parameter values.
Above, In the GMVAR model, The notation is similar to the cited literature. |
model |
is "GMVAR", "StMVAR", or "G-StMVAR" model considered? In the G-StMVAR model, the first |
conditional |
a logical argument specifying whether the conditional or exact log-likelihood function should be used. |
parametrization |
|
constraints |
a size |
same_means |
Restrict the mean parameters of some regimes to be the same? Provide a list of numeric vectors
such that each numeric vector contains the regimes that should share the common mean parameters. For instance, if
|
weight_constraints |
a numeric vector of length |
structural_pars |
If
See Virolainen (forthcoming) for the conditions required to identify the shocks and for the B-matrix as well (it is |
to_return |
should the returned object be the log-likelihood value, which is default, or something else? See the section "Return" for all the options. |
check_params |
should it be checked that the parameter vector satisfies the model assumptions? Can be skipped to save computation time if it does for sure. |
minval |
the value that will be returned if the parameter vector does not lie in the parameter space (excluding the identification condition). |
stat_tol |
numerical tolerance for stationarity of the AR parameters: if the "bold A" matrix of any regime
has eigenvalues larger that |
posdef_tol |
numerical tolerance for positive definiteness of the error term covariance matrices: if the error term covariance matrix of any regime has eigenvalues smaller than this, the model is classified as not satisfying positive definiteness assumption. Note that if the tolerance is too small, numerical evaluation of the log-likelihood might fail and cause error. |
df_tol |
the parameter vector is considered to be outside the parameter space if all degrees of
freedom parameters are not larger than |
loglikelihood_int
takes use of the function dmvn
from the package mvnfast
.
log-likelihood value of the specified GMVAR, StMVAR, or G-StMVAR model,
to_return=="mw"
:a size ((n_obs-p)xM) matrix containing the mixing weights: for m:th component in m:th column.
to_return=="mw_tplus1"
:a size ((n_obs-p+1)xM) matrix containing the mixing weights: for m:th component in m:th column.
The last row is for \alpha_{m,T+1}
.
to_return=="terms"
:a size ((n_obs-p)x1) numeric vector containing the terms l_{t}
.
to_return=="loglik_and_mw"
:a list of two elements. The first element contains the log-likelihood value and the second element contains the mixing weights.
to_return=="regime_cmeans"
:an [T-p, d, M]
array containing the regimewise conditional means
(the first p values are used as the initial values).
to_return=="regime_ccovs"
:an [d, d, T-p, M]
array containing the regimewise conditional
covariance matrices (the first p values are used as the initial values). The index [ , , t, m]
gives the time
t
conditional covariance matrix for the regime m
.
to_return=="total_cmeans"
:a [T-p, d]
matrix containing the conditional means of the process
(the first p values are used as the initial values).
to_return=="total_ccov"
:an [d, d, T-p]
array containing the conditional covariance matrices of the process
(the first p values are used as the initial values).
to_return=="arch_scalars"
:a [T-p, M]
matrix containing the regimewise arch scalars
multiplying error term covariance matrix in the conditional covariance matrix of the regime. For GMVAR type regimes, these
are all ones (the first p values are used as the initial values).
to_return=="loglik_mw_archscalars"
:a list of three elements. The first element contains the log-likelihood value, the
second element contains the mixing weights, the third element contains the arch scalars
(this is used in quantile_residuals_int
).
Kalliovirta L., Meitz M. and Saikkonen P. 2016. Gaussian mixture vector autoregression. Journal of Econometrics, 192, 485-498.
Lütkepohl H. 2005. New Introduction to Multiple Time Series Analysis, Springer.
McElroy T. 2017. Computation of vector ARMA autocovariances. Statistics and Probability Letters, 124, 92-96.
Virolainen S. 2025. A statistically identified structural vector autoregression with endogenously switching volatility regime. Journal of Business & Economic Statistics, 43, 1, 44-54.
Virolainen S. 2022. Gaussian and Student's t mixture vector autoregressive model with application to the asymmetric effects of monetary policy shocks in the Euro area. Unpublished working paper, available as arXiv:2109.13648.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.