checkX13: Check the installation of X-13ARIMA-SEATS
Description
The function checks the installation of the binary
executables of X-13ARIMA-SEATS. For installation details,
consider Section 2 of the package vignette:
vignette("seas")
Usage
checkX13(fail = FALSE, confirmation = TRUE)
Arguments
fail
logical, wether an error should interrupt the
process. If FALSE, only a message will be
returned.
confirmation
logical, a message is returned if
everything works.
old.path <- Sys.getenv("X13_PATH")
Sys.setenv(X13_PATH = "") # its broken nowcheckX13()
Sys.setenv(X13_PATH = old.path) # fix it (provided it worked in the first place)checkX13()