Package elki.timeseries
Class SigniTrendChangeDetection.Instance
- java.lang.Object
-
- elki.timeseries.SigniTrendChangeDetection.Instance
-
- Enclosing class:
- SigniTrendChangeDetection
protected class SigniTrendChangeDetection.Instance extends java.lang.Object
Instance 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 double
processRow(DBIDRef iter, NumberVector row, ChangePoints changepoints)
Process one row, assuming a constant time interval.ChangePoints
run(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.
-
-