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

EntireDetectResponse 构造函数

定义

重载

EntireDetectResponse()

初始化 EntireDetectResponse 类的新实例。

EntireDetectResponse(Int32, IList<Double>, IList<Double>, IList<Double>, IList<Boolean>, IList<Boolean>, IList<Boolean>)

初始化 EntireDetectResponse 类的新实例。

EntireDetectResponse()

Source:
EntireDetectResponse.cs

初始化 EntireDetectResponse 类的新实例。

public EntireDetectResponse ();
Public Sub New ()

适用于

EntireDetectResponse(Int32, IList<Double>, IList<Double>, IList<Double>, IList<Boolean>, IList<Boolean>, IList<Boolean>)

Source:
EntireDetectResponse.cs

初始化 EntireDetectResponse 类的新实例。

public EntireDetectResponse (int period, System.Collections.Generic.IList<double> expectedValues, System.Collections.Generic.IList<double> upperMargins, System.Collections.Generic.IList<double> lowerMargins, System.Collections.Generic.IList<bool> isAnomaly, System.Collections.Generic.IList<bool> isNegativeAnomaly, System.Collections.Generic.IList<bool> isPositiveAnomaly);
new Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.EntireDetectResponse : int * System.Collections.Generic.IList<double> * System.Collections.Generic.IList<double> * System.Collections.Generic.IList<double> * System.Collections.Generic.IList<bool> * System.Collections.Generic.IList<bool> * System.Collections.Generic.IList<bool> -> Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.EntireDetectResponse
Public Sub New (period As Integer, expectedValues As IList(Of Double), upperMargins As IList(Of Double), lowerMargins As IList(Of Double), isAnomaly As IList(Of Boolean), isNegativeAnomaly As IList(Of Boolean), isPositiveAnomaly As IList(Of Boolean))

参数

period
Int32

频率从序列中提取,零表示未找到循环模式。

expectedValues
IList<Double>

ExpectedValues 包含每个输入点的预期值。 数组的索引与输入序列一致。

upperMargins
IList<Double>

UpperMargins 包含每个输入点的上边距。 UpperMargin 用于计算 upperBoundary,等于 expectedValue + (100 - marginScale) *upperMargin。 响应中的异常可以按 upperBoundary 和 lowerBoundary 进行筛选。 通过调整 marginScale 值,可以在客户端中筛选不太重要的异常。 数组的索引与输入序列一致。

lowerMargins
IList<Double>

LowerMargins 包含每个输入点的较低边距。 LowerMargin 用于计算 lowerBoundary,它等于 expectedValue - (100 - marginScale) *lowerMargin。 边界之间的点可以在客户端标记为正常点。 数组的索引与输入序列一致。

isAnomaly
IList<Boolean>

IsAnomaly 包含每个输入点的异常属性。 True 表示检测到负或正异常。 数组的索引与输入序列一致。

isNegativeAnomaly
IList<Boolean>

IsNegativeAnomaly 包含每个输入点的负方向异常状态。 True 表示检测到负异常。 负异常意味着该点被检测为异常,其实际值小于预期值。 数组的索引与输入序列一致。

isPositiveAnomaly
IList<Boolean>

IsPositiveAnomaly 包含每个输入点正向的异常状态。 True 表示检测到正异常。 正异常表示该点被检测为异常,其实际值大于预期值。 数组的索引与输入序列一致。

适用于