naginterfaces.library.tsa.cp_​binary

naginterfaces.library.tsa.cp_binary(ctype, y, beta=None, minss=2, param=None, mdepth=0)[source]

cp_binary detects change points in a univariate time series, that is, the time points at which some feature of the data, for example the mean, changes. Change points are detected using binary segmentation using one of a provided set of cost functions.

For full information please refer to the NAG Library document for g13nd

https://www.nag.com/numeric/nl/nagdoc_29.3/flhtml/g13/g13ndf.html

Parameters
ctypeint

A flag indicating the assumed distribution of the data and the type of change point being looked for.

Data from a Normal distribution, looking for changes in the mean, .

Data from a Normal distribution, looking for changes in the standard deviation .

Data from a Normal distribution, looking for changes in the mean, and standard deviation .

Data from a Gamma distribution, looking for changes in the scale parameter .

Data from an exponential distribution, looking for changes in .

Data from a Poisson distribution, looking for changes in .

yfloat, array-like, shape

, the time series.

If , that is the data is assumed to come from a Poisson distribution, is used in all calculations.

betaNone or float, optional

Note: if this argument is None then a default value will be used, determined as follows: if : ; otherwise: .

, the penalty term.

There are a number of standard ways of setting , including:

SIC or BIC

AIC

Hannan-Quinn

where is the number of parameters being treated as estimated in each segment.

This is usually set to when and otherwise.

If no penalty is required then set .

Generally, the smaller the value of the larger the number of suggested change points.

minssint, optional

The minimum distance between two change points, that is .

paramNone or float, array-like, shape , optional

, values for the parameters that will be treated as fixed. If then must be supplied.

If supplied, then when

, the standard deviation of the normal distribution. If not supplied then is estimated from the full input data,

, the mean of the normal distribution. If not supplied then is estimated from the full input data,

must hold the shape, , for the gamma distribution,

otherwise

is not referenced.

mdepthint, optional

, the maximum depth for the iterative process, which in turn puts an upper limit on the number of change points with .

If then no limit is put on the depth of the iterative process and no upper limit is put on the number of change points, other than that inherent in the length of the series and the value of .

Returns
ntauint

, the number of change points detected.

tauint, ndarray, shape

The first elements of hold the location of the change points. The th segment is defined by to , where and .

sparamfloat, ndarray, shape or

The estimated values of the distribution parameters in each segment

, or

and for , where and is the mean and standard deviation, respectively, of the values of in the th segment.

It should be noted that when and when , for all and .

and for , where and are the shape and scale parameters, respectively, for the values of in the th segment. It should be noted that for all .

or

for , where is the mean of the values of in the th segment.

Raises
NagValueError
(errno )

On entry, .

Constraint: , , , , or .

(errno )

On entry, .

Constraint: .

(errno )

On entry, and .

Constraint: if , or then , for .

(errno )

On entry, , is too large.

(errno )

On entry, .

Constraint: .

(errno )

On entry, and .

Constraint: if or and has been supplied, then .

Warns
NagAlgorithmicWarning
(errno )

To avoid overflow some truncation occurred when calculating the cost function, . All output is returned as normal.

(errno )

To avoid overflow some truncation occurred when calculating the parameter estimates returned in . All output is returned as normal.

Notes

Let denote a series of data and denote a set of ordered (strictly monotonic increasing) indices known as change points, with and . For ease of notation we also define . The change points, , split the data into segments, with the th segment being of length and containing .

Given a cost function, , cp_binary gives an approximate solution to

where is a penalty term used to control the number of change points. The solution is obtained in an iterative manner as follows:

  1. Set , and

  2. Set . If , where is a user-supplied control parameter, then terminate the process for this segment.

  3. Find that minimizes

  4. Test

  5. If inequality [equation] is false then the process is terminated for this segment.

  6. If inequality [equation] is true, then is added to the set of change points, and the segment is split into two subsegments, and . The whole process is repeated from step 2 independently on each subsegment, with the relevant changes to the definition of and (i.e., is set to when processing the left-hand subsegment and is set to when processing the right-hand subsegment.

The change points are ordered to give .

cp_binary supplies four families of cost function. Each cost function assumes that the series, , comes from some distribution, . The parameter space, is subdivided into containing those parameters allowed to differ in each segment and those parameters treated as constant across all segments. All four cost functions can then be described in terms of the likelihood function, and are given by:

where the is the maximum likelihood estimate of within the th segment. Four distributions are available; Normal, Gamma, Exponential and Poisson distributions. Letting

the log-likelihoods and cost functions for the four distributions, and the available subdivisions of the parameter space are:

Normal distribution:

Mean changes:

Variance changes:

Both mean and variance change:

Gamma distribution:

Scale changes:

Exponential Distribution:

Mean changes:

Poisson distribution:

Mean changes:

when calculating for the Poisson distribution, the sum is calculated for rather than .

References

Chen, J and Gupta, A K, 2010, Parametric Statistical Change Point Analysis With Applications to Genetics, Medicine and Finance (Second Edition), Birkhäuser

West, D H D, 1979, Updating mean and variance estimates: An improved method, Comm. ACM (22), 532–555