Package elki.timeseries
Class SigniTrendChangeDetection.Instance
- java.lang.Object
-
- elki.timeseries.SigniTrendChangeDetection.Instance
-
- Enclosing class:
- SigniTrendChangeDetection
protected class SigniTrendChangeDetection.Instance extends java.lang.ObjectInstance for one data set.- Author:
- Erich Schubert
-
-
Constructor Summary
Constructors Constructor Description Instance()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private doubleprocessRow(DBIDRef iter, NumberVector row, ChangePoints changepoints)Process one row, assuming a constant time interval.ChangePointsrun(Relation<NumberVector> relation)Process a relation.
-
-
-
Method Detail
-
run
public ChangePoints run(Relation<NumberVector> relation)
Process a relation.- Parameters:
relation- Data relation- Returns:
- Change points
-
processRow
private double processRow(DBIDRef iter, NumberVector row, ChangePoints changepoints)
Process one row, assuming a constant time interval.- Parameters:
iter- Row identifier for reporting.row- Data rowchangepoints- Change points result for output- Returns:
- absolute maximum deviation.
-
-