次の方法で共有


ChangeThresholdCondition コンストラクター

定義

ChangeThresholdCondition クラスの新しいインスタンスを初期化します。

public ChangeThresholdCondition (double changePercentage, int shiftPoint, bool withinRange, Azure.AI.MetricsAdvisor.Models.AnomalyDetectorDirection anomalyDetectorDirection, Azure.AI.MetricsAdvisor.Models.SuppressCondition suppressCondition);
new Azure.AI.MetricsAdvisor.Models.ChangeThresholdCondition : double * int * bool * Azure.AI.MetricsAdvisor.Models.AnomalyDetectorDirection * Azure.AI.MetricsAdvisor.Models.SuppressCondition -> Azure.AI.MetricsAdvisor.Models.ChangeThresholdCondition
Public Sub New (changePercentage As Double, shiftPoint As Integer, withinRange As Boolean, anomalyDetectorDirection As AnomalyDetectorDirection, suppressCondition As SuppressCondition)

パラメーター

changePercentage
Double

異常なポイントを検出するための境界を区切る、前のポイントと比較した変化の割合。

shiftPoint
Int32

N に設定すると、現在のポイントの前にある N 個の位置のデータ ポイントを参照として設定します。 値は少なくとも 1 である必要があります。

withinRange
Boolean

の場合 true、境界内の changePercentage ポイントは異常と見なされます (フラットな線と安定した値を検出するのに最適)。 の場合 false、境界外のポイントのみを異常と見なすことができます (変動の検出に最適)。

anomalyDetectorDirection
AnomalyDetectorDirection

予期される値範囲を区切る境界を設定します。 が のtrue場合withinRange、 は にのみBoth設定できます。 それ以外の場合は、 または DownにのみUp設定できます。

suppressCondition
SuppressCondition

SuppressConditionすべての異常なデータ ポイントに適用される 。

例外

suppressCondition が null です。

適用対象