ind: Most recent changepoint using ind method

Description Usage Arguments Value Examples

View source: R/ind(PELT).R

Description

Analyzing each series in the panel independently (IND) method that is the simplest one to analyze all the series independently in the panel data and in each given series estimate the most recent changepoint. We use PELT for segmenting a time series into changing means, assumes normally distributed observations with changing mean but constant variance

Usage

1
ind(data, pen = 0)

Arguments

data

a censored data matrix

pen

(penalty term) default 2*log(n). If pen is equal to zero, penalty term will be equal to 2*log(n)

Value

indicates the most recent changepoint in each series .

Examples

1
2
3
4
5
6
7
#Default example
library(cpcens)
data("censoredex")
data=censoredex
n=144
N=100
out=ind(data, pen=0)

cpcens documentation built on Aug. 2, 2019, 5:05 p.m.

Related to ind in cpcens...