Learn R Programming

gmvarkit (version 1.4.1)

print_std_errors: Print standard errors of GMVAR model in the same form as the model estimates are printed

Description

print_std_errors prints the approximate standard errors of GMVAR model in the same form as the parameters of objects of class 'gmvar' are printed.

Usage

print_std_errors(gmvar, digits = 3)

Arguments

gmvar

an object of class 'gmvar' created with fitGMVAR or GMVAR.

digits

how many digits should be printed?

Details

The main purpose of print_std_errors is to provide a convenient tool to match the standard errors to certain parameter estimates.

Note that if linear constraints are imposed and they involve summations or multiplications, then the AR parameter standard errors are printed separately as they don't correspond one-to-one to the model parameter standard errors.

References

  • Kalliovirta L., Meitz M. and Saikkonen P. 2016. Gaussian mixture vector autoregression. Journal of Econometrics, 192, 485-498.

  • Kalliovirta L. and Saikkonen P. 2010. Reliable Residuals for Multivariate Nonlinear Time Series Models. Unpublished Revision of HECER Discussion Paper No. 247.

  • Virolainen S. 2020. Structural Gaussian mixture vector autoregressive model. Unpublished working paper, available as arXiv:2007.04713.

See Also

profile_logliks, fitGMVAR, GMVAR, print.gmvar, swap_parametrization

Examples

Run this code
# NOT RUN {
## These are long running examples that use parallel computing!
## The below examples take around 20 seconds to run.

# These examples use the data 'eurusd' which comes with the
# package, but in a scaled form.
data <- cbind(10*eurusd[,1], 100*eurusd[,2])
colnames(data) <- colnames(eurusd)

# GMVAR(1,2) model
fit12 <- fitGMVAR(data, p=1, M=2, ncalls=1, seeds=7)
fit12
print_std_errors(fit12)
# }

Run the code above in your browser using DataLab