checkX13 | R Documentation |
Check the installation of the binary executables of X-13ARIMA-SEATS. See
seasonal()
for details on how to set X13_PATH
manually if
you intend to use your own binaries.
checkX13(fail = FALSE, fullcheck = TRUE, htmlcheck = TRUE)
fail |
logical, whether an error should interrupt the process. If
|
fullcheck |
logical, whether a full test should be performed. Runs
|
htmlcheck |
logical, whether the presence of the the HTML version of X-13 should be checked. |
old.path <- Sys.getenv("X13_PATH")
Sys.setenv(X13_PATH = "") # its broken now
try(checkX13())
# fix it (provided it worked in the first place)
if (old.path == "") {
Sys.unsetenv("X13_PATH")
} else {
Sys.setenv(X13_PATH = old.path)
}
try(checkX13())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.