Package: legion 0.2.1
legion: Forecasting Using Multivariate Models
Functions implementing multivariate state space models for purposes of time series analysis and forecasting. The focus of the package is on multivariate models, such as Vector Exponential Smoothing, Vector ETS (Error-Trend-Seasonal model) etc. It currently includes Vector Exponential Smoothing (VES, de Silva et al., 2010, <doi:10.1177/1471082X0901000401>), Vector ETS (Svetunkov et al., 2023, <doi:10.1016/j.ejor.2022.04.040>) and simulation function for VES.
Authors:
legion_0.2.1.tar.gz
legion_0.2.1.tar.gz(r-4.5-noble)legion_0.2.1.tar.gz(r-4.4-noble)
legion_0.2.1.tgz(r-4.4-emscripten)legion_0.2.1.tgz(r-4.3-emscripten)
legion.pdf |legion.html✨
legion/json (API)
NEWS
# Install 'legion' in R: |
install.packages('legion', repos = 'https://cloud.r-project.org') |
Bug tracker:https://github.com/config-i1/legion/issues9 issues
Last updated 2 months agofrom:a4b7ef553f. Checks:3 OK. Indexed: no.
Target | Result | Latest binary |
---|---|---|
Doc / Vignettes | OK | Mar 05 2025 |
R-4.5-linux-x86_64 | OK | Mar 05 2025 |
R-4.4-linux-x86_64 | OK | Mar 05 2025 |
Exports:auto.vetsis.legionis.legion.simis.ovesovessim.vesvesvets
Dependencies:askpasscurlgenericsgreyboxhttrjsonlitelatticeMASSMatrixmimenloptropensslpracmaR6RcppRcppArmadillosmoothstatmodsystexregxtablezoo
legion: Forecasting Using Multivariate Models
Rendered fromlegion.Rmd
usingknitr::rmarkdown
on Mar 05 2025.Last update: 2021-05-17
Started: 2021-05-17
ves() - Vector Exponential Smoothing
Rendered fromves.Rmd
usingknitr::rmarkdown
on Mar 05 2025.Last update: 2022-02-15
Started: 2021-05-17
vets() - Vector ETS
Rendered fromvets.Rmd
usingknitr::rmarkdown
on Mar 05 2025.Last update: 2022-02-15
Started: 2021-05-17
Citation
To cite package ‘legion’ in publications use:
Svetunkov I, Pritularga K (2025). legion: Forecasting Using Multivariate Models. R package version 0.2.1, https://CRAN.R-project.org/package=legion.
Corresponding BibTeX entry:
@Manual{, title = {legion: Forecasting Using Multivariate Models}, author = {Ivan Svetunkov and Kandrika Fadhlan Pritularga}, year = {2025}, note = {R package version 0.2.1}, url = {https://CRAN.R-project.org/package=legion}, }
Readme and manuals
legion
The package legion implements several multivariate models for purposes of forecasting.
Here is the list of the included functions:
- ves - Vector Exponential Smoothing.
- vets - Vector ETS with PIC taxonomy.
- auto.vets - Automatic selection of restrictions for VETS.
- sim.ves - simulates data from VES.
- oves - occurrence state space vector exponential smoothing model.
Available methods:
- AIC, BIC, AICc, BICc;
- coefficients;
- fitted;
- forecast;
- actuals;
- logLik;
- modelType - type of the estimated model;
- nobs;
- nparam - number of the estimated parameters in the model;
- nvariate - number of series in the model;
- residuals - the residuals of the model (et in case of additive and log(1+et) for the multiplicative ones);
- rstandard, rstudent - standardised and studentised residuals;
- outlierdummy - extracts outliers in the model and creates dummy variables for them;
- plot - produces several plots for diagnostics purposes. See the documentation for plot.legion();
- print;
- sigma;
- simulate;
- summary;
Installation
The stable version of the package is available on CRAN, so you can install it by running:
install.packages("legion")
A recent, development version, is available via github and can be installed using "remotes" in R. First, make sure that you have remotes:
if (!require("remotes")){install.packages("remotes")}
and after that run:
remotes::install_github("config-i1/legion")
Help Manual
Help page | Topics |
---|---|
Vector ETS-PIC model | auto.vets vets |
legion classes checkers | is.legion is.legion.sim is.oves |
Legion package | legion-package legion |
Occurrence part of Vector State Space | oves |
Plots for the fit and states | plot.legion |
Simulate Vector Exponential Smoothing | sim.ves |
Vector Exponential Smoothing in SSOE state space model | ves |