LastDetectResponse Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public class LastDetectResponse
type LastDetectResponse = class
Public Class LastDetectResponse
- Inheritance
-
LastDetectResponse
Constructors
LastDetectResponse() |
Initializes a new instance of the LastDetectResponse class. |
LastDetectResponse(Int32, Int32, Double, Double, Double, Boolean, Boolean, Boolean) |
Initializes a new instance of the LastDetectResponse class. |
Properties
ExpectedValue |
Gets or sets expected value of the latest point. |
IsAnomaly |
Gets or sets anomaly status of the latest point, true means the latest point is an anomaly either in negative direction or positive direction. |
IsNegativeAnomaly |
Gets or sets anomaly status in negative direction of the latest point. True means the latest point is an anomaly and its real value is smaller than the expected one. |
IsPositiveAnomaly |
Gets or sets anomaly status in positive direction of the latest point. True means the latest point is an anomaly and its real value is larger than the expected one. |
LowerMargin |
Gets or sets lower margin of the latest point. LowerMargin is used to calculate lowerBoundary, which equals to expectedValue - (100 - marginScale)*lowerMargin. |
Period |
Gets or sets frequency extracted from the series, zero means no recurrent pattern has been found. |
SuggestedWindow |
Gets or sets suggested input series points needed for detecting the latest point. |
UpperMargin |
Gets or sets upper margin of the latest point. UpperMargin is used to calculate upperBoundary, which equals to expectedValue + (100 - marginScale)*upperMargin. If the value of latest point is between upperBoundary and lowerBoundary, it should be treated as normal value. By adjusting marginScale value, anomaly status of latest point can be changed. |
Methods
Validate() |
Validate the object. |
Applies to
Azure SDK for .NET