Package elki.timeseries
Class ChangePoints
- java.lang.Object
-
- elki.timeseries.ChangePoints
-
- All Implemented Interfaces:
elki.result.textwriter.TextWriteable
public class ChangePoints extends java.lang.Object implements elki.result.textwriter.TextWriteableChange point detection result Used by change or trend detection algorithms TODO: we need access to the data labels / timestamp information!- Since:
- 0.7.5
- Author:
- Sebastian Rühl, Erich Schubert
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.util.List<ChangePoint>changepointsChange points.
-
Constructor Summary
Constructors Constructor Description ChangePoints()Result constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(elki.database.ids.DBIDRef iter, int column, double score)Add a change point to the result.voidwriteToText(elki.result.textwriter.TextWriterStream out, java.lang.String label)
-
-
-
Field Detail
-
changepoints
java.util.List<ChangePoint> changepoints
Change points.
-
-
Method Detail
-
writeToText
public void writeToText(elki.result.textwriter.TextWriterStream out, java.lang.String label)- Specified by:
writeToTextin interfaceelki.result.textwriter.TextWriteable
-
add
public void add(elki.database.ids.DBIDRef iter, int column, double score)Add a change point to the result.- Parameters:
iter- Time referencecolumn- Columnscore- Score
-
-