Andrews.test: Andrews' Test for End-of-Sample Structural Change
Description
Performs Andrews' test for end-of-sample structural change, as described in
andrews03CPAT. This function works for both univariate and
multivariate data depending on the nature of x and whether
formula is specified. This function is thus an interface to
andrews_test and andrews_test_reg; see the
documentation of those functions for more details.
Usage
Andrews.test(x, M, formula = NULL)
Arguments
x
Data to test for change in mean (either a vector or
data.frame)
M
Numeric index of the location of the first potential change point
formula
The regression formula, which will be passed to
lm
Value
A htest-class object containing the results of the test
# NOT RUN {Andrews.test(rnorm(1000), M = 900)
x <- rnorm(1000)
y <- 1 + 2 * x + rnorm(1000)
df <- data.frame(x, y)
Andrews.test(df, y ~ x, M = 900)
# }