stat_Zn {CPAT} | R Documentation |
Compute the Rényi-Type Statistic
Description
This function computes the Rényi-type statistic.
Usage
stat_Zn(dat, kn = function(n) { floor(sqrt(n)) }, estimate = FALSE,
use_kernel_var = FALSE, custom_var = NULL, kernel = "ba",
bandwidth = "and", get_all_vals = FALSE)
Arguments
dat |
The data vector |
kn |
A function corresponding to the trimming parameter |
estimate |
Set to |
use_kernel_var |
Set to |
custom_var |
Can be a vector the same length as |
kernel |
If character, the identifier of the kernel function as used in
cointReg (see |
bandwidth |
If character, the identifier for how to compute the
bandwidth as defined in cointReg (see
|
get_all_vals |
If |
Details
The definition of the statistic is
\max_{t_T \leq t \leq T - t_T} \hat{\sigma}_{t,T}^{-1}
\left|t^{-1}\sum_{s = 1}^{t}X_s - (T - t)^{-1}\sum_{s = t + 1}^{T}
X_s \right|
The parameter kn
corresponds to the trimming parameter t_T
.
Value
If both estimate
and get_all_vals
are FALSE
, the
value of the test statistic; otherwise, a list that contains the test
statistic and the other values requested (if both are TRUE
,
the test statistic is in the first position and the estimated change
point in the second)
Examples
CPAT:::stat_Zn(rnorm(1000))
CPAT:::stat_Zn(rnorm(1000), kn = function(n) {floor(log(n))})
CPAT:::stat_Zn(rnorm(1000), use_kernel_var = TRUE, bandwidth = "nw",
kernel = "bo")