Class ChangePointDetectResponse

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

public final class ChangePointDetectResponse extends Object
The response of change point detection.
  • Constructor Details

    • ChangePointDetectResponse

      public ChangePointDetectResponse()
  • 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.
    • setIsChangePoint

      public ChangePointDetectResponse setIsChangePoint(List<Boolean> isChangePoint)
      Set 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.
      Parameters:
      isChangePoint - the isChangePoint value to set.
      Returns:
      the ChangePointDetectResponse object itself.
    • getConfidenceScores

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

      public ChangePointDetectResponse setConfidenceScores(List<Float> confidenceScores)
      Set the confidenceScores property: the change point confidence of each point.
      Parameters:
      confidenceScores - the confidenceScores value to set.
      Returns:
      the ChangePointDetectResponse object itself.