pelt: Uses the PELT algorithm as implemented in
segment_pelt(), which wraps either changepoint::cpt.mean() or
changepoint::cpt.meanvar(). The segmenter is of class cpt.
binseg: Uses the Binary Segmentation algorithm as implemented by
changepoint::cpt.meanvar(). The segmenter is of class cpt.
segneigh: Uses the Segmented Neighborhood algorithm as implemented by
changepoint::cpt.meanvar(). The segmenter is of class cpt.
single-best: Uses the AMOC criteria as implemented by
changepoint::cpt.meanvar(). The segmenter is of class cpt.
wbs: Uses the Wild Binary Segmentation algorithm as implemented by
wbs::wbs(). The segmenter is of class wbs.
strucchange: Uses the segmented algorithm as implemented by
strucchange::breakpoints(). The segmenter is of class breakpoints.
segmented: Uses the segmented algorithm as implemented by
segmented::segmented(). The segmenter is of class segmented.
cptga: Uses the Genetic algorithm implemented by segment_cptga(), which wraps
changepointGA::cptga(). The segmenter is of class tidycptga.
ga: Uses the Genetic algorithm implemented by segment_ga(), which wraps
GA::ga(). The segmenter is of class tidyga.
ga-shi: Uses the genetic algorithm implemented by segment_ga_shi(),
which wraps
segment_ga(). The segmenter is of class tidyga.
ga-coen: Uses Coen's heuristic as implemented by segment_ga_coen().
The segmenter is of class tidyga. This implementation supersedes the
following one.
coen: Uses Coen's heuristic as implemented by
segment_coen(). The segmenter is of class seg_basket(). Note that
this function is deprecated.
random: Uses a random basket of changepoints as implemented by
segment_ga_random().
The segmenter is of class tidyga.
manual: Uses the vector of changepoints in the tau argument.
The segmenter is of class seg_cpt`.
null: The default. Uses no changepoints.
The segmenter is of class seg_cpt.