Description Usage Arguments Value References Examples
This implements Andrews' test for end-of-sample change, as described by \insertCiteandrews03;textualCPAT. This test was derived for detecting a change in multivarate data, aso originally described. See \insertCiteandrews03CPAT for a description of the test.
1 | andrews_test_reg(formula, data, M, pval = TRUE, stat = TRUE)
|
formula |
The regression formula, which will be passed to
|
data |
|
M |
Numeric index of the location of the first potential change point |
pval |
If |
stat |
If |
If both pval
and stat
are TRUE
, a list
containing both; otherwise, a number for one or the other, depending
on which is TRUE
1 2 3 4 | x <- rnorm(1000)
y <- 1 + 2 * x + rnorm(1000)
df <- data.frame(x, y)
CPAT:::andrews_test_reg(y ~ x, data = df, M = 900)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.