UnivariateChangePointDetectionResult Class

  • java.lang.Object
    • com.azure.ai.anomalydetector.models.UnivariateChangePointDetectionResult

public final class UnivariateChangePointDetectionResult

The response of change point detection.

Method Summary

Modifier and Type Method and Description
List<Double> getConfidenceScores()

Get the confidenceScores property: the change point confidence of each point.

List<Boolean> getIsChangePoint()

Get the isChangePoint property: isChangePoint contains change point properties for each input point.

Integer getPeriod()

Get the period property: Frequency extracted from the series, zero means no recurrent pattern has been found.

Methods inherited from java.lang.Object

Method Details

getConfidenceScores

public List getConfidenceScores()

Get the confidenceScores property: the change point confidence of each point.

Returns:

the confidenceScores value.

getIsChangePoint

public List getIsChangePoint()

Get the isChangePoint property: isChangePoint contains change point properties for each input point. True means an anomaly either negative or positive has been detected. The index of the array is consistent with the input series.

Returns:

the isChangePoint value.

getPeriod

public Integer getPeriod()

Get the period property: Frequency extracted from the series, zero means no recurrent pattern has been found.

Returns:

the period value.

Applies to