Learn R Programming

seasonal (version 0.20.2)

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.

Examples

Run this code
old.path <- Sys.getenv("X13_PATH")
Sys.setenv(X13_PATH = "")  # its broken now
checkX13()

Sys.setenv(X13_PATH = old.path)  # fix it (provided it worked in the first place)
checkX13()

Run the code above in your browser using DataLab