Class UnivariateChangePointDetectionResult

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

public final class UnivariateChangePointDetectionResult extends Object
The response of change point detection.
  • Method Details

    • 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.
    • getIsChangePoint

      public List<Boolean> 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.
    • getConfidenceScores

      public List<Double> getConfidenceScores()
      Get the confidenceScores property: the change point confidence of each point.
      Returns:
      the confidenceScores value.