means.between.cpt: Means between change-points

Description Usage Arguments Value Examples

Description

The function finds the average of the input vector x between change-points given in cpt.

Usage

1

Arguments

x

a vector

cpt

a vector of integers with localisations of change-points

...

further arguments passed to mean method

Value

a vector of the same length as x, piecewise constant and equal to the mean between change-points given in cpt

Examples

1
2
3
4
5
6
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)

wbs documentation built on May 15, 2019, 1:04 a.m.