sol.idetect_seq {breakfast}R Documentation

Solution path generation using the sequential approach of the Isolate-Detect method

Description

This function uses the Isolate-Detect method in its original sequential way in order to create the solution path. It is developed to be used with the thresholding model selection rule.

Usage

sol.idetect_seq(x, points = 3)

Arguments

x

A numeric vector containing the data to be processed

points

A positive integer with default value equal to 3. It defines the distance between two consecutive end- or start-points of the right- or left-expanding intervals, as described in the Isolate-Detect methodology.

Details

The Isolate-Detect method and its algorithm is described in "Detecting multiple generalized change-points by isolating single ones", A. Anastasiou & P. Fryzlewicz (2021), Metrika, https://doi.org/10.1007/s00184-021-00821-6.

Value

An S3 object of class cptpath, which contains the following fields:

solutions.nested

TRUE, i.e., the change-point outputs are nested

solution.path

Locations of possible change-points in the mean of x, arranged in decreasing order of change-point importance

solution.set

Empty list

x

Input vector x

cands

Matrix of dimensions length(x) - 1 by 4. The first two columns are (start, end)-points of the detection intervals of the corresponding possible change-point location in the third column. The fourth column is a measure of strength of the corresponding possible change-point. The order of the rows is the same as the order returned in solution.path

method

The method used, which has value "idetect_seq" here

References

A. Anastasiou & P. Fryzlewicz (2021). Detecting multiple generalized change-points by isolating single ones. Metrika, https://doi.org/10.1007/s00184-021-00821-6.

See Also

sol.idetect, sol.not, sol.wbs, sol.wbs2, sol.tguh,

Examples

r3 <- rnorm(1000) + c(rep(0,300), rep(2,200), rep(-4,300), rep(0,200))
sol.idetect_seq(r3)

[Package breakfast version 2.3 Index]