ChangePointDetectRequest Constructors

Definition

Overloads

ChangePointDetectRequest()
ChangePointDetectRequest(IList<Point>, Granularity, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>)

ChangePointDetectRequest()

Source:
ChangePointDetectRequest.cs
public ChangePointDetectRequest ();
Public Sub New ()

Applies to

ChangePointDetectRequest(IList<Point>, Granularity, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Double>)

Source:
ChangePointDetectRequest.cs
public ChangePointDetectRequest (System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Point> series, Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Granularity granularity, int? customInterval = default, int? period = default, int? stableTrendWindow = default, double? threshold = default);
new Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.ChangePointDetectRequest : System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Point> * Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Granularity * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<double> -> Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.ChangePointDetectRequest
Public Sub New (series As IList(Of Point), granularity As Granularity, Optional customInterval As Nullable(Of Integer) = Nothing, Optional period As Nullable(Of Integer) = Nothing, Optional stableTrendWindow As Nullable(Of Integer) = Nothing, Optional threshold As Nullable(Of Double) = Nothing)

Parameters

series
IList<Point>
granularity
Granularity
customInterval
Nullable<Int32>
period
Nullable<Int32>
stableTrendWindow
Nullable<Int32>
threshold
Nullable<Double>

Applies to