means.between.cpt {wbs} | R Documentation |
The function finds the average of the input vector x
between change-points given in cpt
.
means.between.cpt(x, cpt = NULL, ...)
x |
a vector |
cpt |
a vector of integers with localisations of change-points |
... |
further arguments passed to |
a vector of the same length as x
, piecewise constant and equal to the mean between change-points given in cpt
x <- rnorm(100)+c(rep(-1,50),rep(1,50)) cpt <- 50 means.between.cpt(x,cpt) w <- wbs(x) cpt <- changepoints(w) means.between.cpt(x,cpt=cpt$cpt.ic$sbic)