AnomalyDetectionMethod
Namespace: Meshmakers.Octo.MeshAdapter.Nodes.Transform
Anomaly detection methods
public enum AnomalyDetectionMethod
Inheritance Object → ValueType → Enum → AnomalyDetectionMethod
Implements IComparable, ISpanFormattable, IFormattable, IConvertible
Fields
| Name | Value | Description |
|---|---|---|
| ZScore | 0 | Z-Score based detection (threshold = number of standard deviations) |
| Iqr | 1 | Interquartile Range based detection (threshold = IQR multiplier) |
| PercentChange | 2 | Percent change from last value (threshold = percent) |
| MovingAverage | 3 | Moving average deviation (threshold = percent deviation) |