你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

UnivariateChangePointDetectionResult Class

The response of change point detection.

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

Constructor

UnivariateChangePointDetectionResult(*args: Any, **kwargs: Any)

Variables

Name Description
period
int

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

is_change_point

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

the change point confidence of each point.

Methods

clear
copy
get
items
keys
pop
popitem
setdefault
update
values

clear

clear() -> None

copy

copy()

get

get(key: str, default: Any = None) -> Any

Parameters

Name Description
key
Required
default
Default value: None

items

items() -> ItemsView

keys

keys() -> KeysView

pop

pop(key: ~typing.Any, default: ~typing.Any = <object object>) -> Any

Parameters

Name Description
key
Required
default

popitem

popitem() -> Tuple[str, Any]

setdefault

setdefault(key: ~typing.Any, default: ~typing.Any = <object object>) -> Any

Parameters

Name Description
key
Required
default

update

update(*args: Any, **kwargs: Any) -> None

values

values() -> ValuesView

Attributes

confidence_scores

the change point confidence of each point.

confidence_scores: List[float] | None

is_change_point

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.

is_change_point: List[bool] | None

period

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

period: int | None