View source: R/lrt_stationarity_inad.R
| run_stationarity_tests_inad | R Documentation |
Run all stationarity-related tests for INAD
run_stationarity_tests_inad(
y,
order = 1,
thinning = "binom",
innovation = "pois",
blocks = NULL,
verbose = FALSE,
...
)
y |
Integer matrix. |
order |
Model order (1 or 2). |
thinning |
Thinning operator. |
innovation |
Innovation distribution. |
blocks |
Optional block assignments. |
verbose |
Logical. |
... |
Additional arguments. |
A list with class "stationarity_tests_inad".
set.seed(1)
y <- simulate_inad(
n_subjects = 25,
n_time = 5,
order = 1,
thinning = "binom",
innovation = "pois",
alpha = 0.3,
theta = 2
)
out <- run_stationarity_tests_inad(
y,
order = 1,
thinning = "binom",
innovation = "pois",
verbose = FALSE,
max_iter = 15
)
out$summary
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.