
Print method for varma_stationarity
Source:R/lingam_varma_diagnostics.r
print.varma_stationarity.RdPrint method for varma_stationarity
Usage
# S3 method for class 'varma_stationarity'
print(x, ...)Examples
s <- generate_varmalingam_sample(n = 1000, seed = 42)
m <- lingam_varma(s$data,
order = c(1, 1), criterion = NULL,
reg_method = "ols", prune = FALSE
)
print(check_varma_stationarity(m))
#> === VARMA Stationarity / Invertibility Check ===
#> Order (p, q): (1, 1)
#> Max |AR eigenvalue|: 0.4763 (threshold 1.00)
#> Stationary: YES
#> Max |MA eigenvalue|: 0.2974 (threshold 1.00)
#> Invertible: YES