ChangePointDetectResponse Class

The response of change point detection.

Variables are only populated by the server, and will be ignored when sending a request.

Inheritance
ChangePointDetectResponse

Constructor

ChangePointDetectResponse(*, is_change_point: Optional[List[bool]] = None, confidence_scores: Optional[List[float]] = None, **kwargs)

Variables

period
int

Frequency extracted from the series, zero means no recurrent pattern has been found.

is_change_point
list[bool]

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.

confidence_scores
list[float]

the change point confidence of each point.