Share via


MultivariateBatchDetectionOptions Constructor

Definition

Initializes a new instance of MultivariateBatchDetectionOptions.

public MultivariateBatchDetectionOptions (string dataSource, int topContributorCount, DateTimeOffset startTime, DateTimeOffset endTime);
new Azure.AI.AnomalyDetector.MultivariateBatchDetectionOptions : string * int * DateTimeOffset * DateTimeOffset -> Azure.AI.AnomalyDetector.MultivariateBatchDetectionOptions
Public Sub New (dataSource As String, topContributorCount As Integer, startTime As DateTimeOffset, endTime As DateTimeOffset)

Parameters

dataSource
String

Source link to the input data to indicate an accessible Azure Storage URI. It either points to an Azure Blob Storage folder or points to a CSV file in Azure Blob Storage, based on your data schema selection. The data schema should be exactly the same as those used in the training phase.

topContributorCount
Int32

Number of top contributed variables for one anomalous time stamp in the response. The default is 10.

startTime
DateTimeOffset

Start date/time of data for detection, which should be in ISO 8601 format.

endTime
DateTimeOffset

End date/time of data for detection, which should be in ISO 8601 format.

Exceptions

dataSource is null.

Applies to