| anotherBkp | R Documentation |
Get best candidate change point according to binary segmentation
anotherBkp(Y, weightFUN = defaultWeights, verbose = FALSE)
Y |
A |
weightFUN |
A |
verbose |
A |
Contrary to oneBkp, anotherBkp handles missing values (NA:s).
A numerical value, a candidate breakpoint position
Morgane Pierre-Jean and Pierre Neuvial
p <- 2 n <- 100 sim <- randomProfile(n, 1, 1, p) Y <- sim$profile bkp <- anotherBkp(Y) print(bkp) print(oneBkp(Y)) ## stopifnot(identical(oneBkp(Y), bkp)) plotSeg(Y, list(sim$bkp, bkp)) ## robustness to NA:s h <- 2 idxs <- seq(from=max(sim$bkp[1]-h, 1), min(sim$bkp[1]+h, n)) Y[idxs, p] <- NA oneBkp(Y) ## does not work bkp <- anotherBkp(Y) ## works bkp-sim$bkp