Show / Hide Table of Contents

Class Anomaly

An object to hold value information for each anomaly point

Inheritance
object
Anomaly
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AianomalydetectionService.Models
Assembly: OCI.DotNetSDK.Aianomalydetection.dll
Syntax
public class Anomaly

Properties

ActualValue

Declaration
[Required(ErrorMessage = "ActualValue is required.")]
[JsonProperty(PropertyName = "actualValue")]
public double ActualValue { get; set; }
Property Value
Type Description
double

The actual value for the anomaly point at given signal and timestamp/row

Remarks

Required

AnomalyScore

Declaration
[Required(ErrorMessage = "AnomalyScore is required.")]
[JsonProperty(PropertyName = "anomalyScore")]
public double AnomalyScore { get; set; }
Property Value
Type Description
double

A significant score ranged from 0 to 1 to each anomaly point.

Remarks

Required

EstimatedValue

Declaration
[Required(ErrorMessage = "EstimatedValue is required.")]
[JsonProperty(PropertyName = "estimatedValue")]
public double EstimatedValue { get; set; }
Property Value
Type Description
double

The estimated value for the anomaly point at given signal and timestamp/row

Remarks

Required

ImputedValue

Declaration
[JsonProperty(PropertyName = "imputedValue")]
public double ImputedValue { get; set; }
Property Value
Type Description
double

The value imputed by an IDP step for missing values in origin data.

SignalName

Declaration
[Required(ErrorMessage = "SignalName is required.")]
[JsonProperty(PropertyName = "signalName")]
public string SignalName { get; set; }
Property Value
Type Description
string

Name of a signal where current anomaly point belongs to

Remarks

Required

In this article
Back to top