| hcp_pelt | R Documentation |
Multiple change-point detection using the PELT algorithm for mean/variance
with a linear-time cost under suitable penalty choices. This function wraps
the PELT implementation in the changepoint package.
hcp_pelt()
PELT performs optimal partitioning while pruning candidate change-point locations to achieve near-linear computational cost.
hcp_pelt object.
Killick R, Fearnhead P, Eckley IA (2012). Optimal detection of changepoints with a linear computational cost. JASA, 107(500):1590–1598.
library(daltoolbox)
# Load change-point example data
data(examples_changepoints)
# Use a simple example
dataset <- examples_changepoints$simple
head(dataset)
# Configure the PELT detector
model <- hcp_pelt()
# Fit the detector (no-op for PELT)
model <- fit(model, dataset$serie)
# Run detection
detection <- detect(model, dataset$serie)
# Show detected change points
print(detection[(detection$event),])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.