AnomalyResult

data class AnomalyResult(val score: Float, val reasons: List<String>, val recommendedAction: AnomalyAction)

Result of anomaly analysis.

Since

0.5.0

Constructors

Link copied to clipboard
constructor(score: Float, reasons: List<String>, recommendedAction: AnomalyAction)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

List of reasons contributing to the anomaly score.

Link copied to clipboard

Suggested action based on the score.

Link copied to clipboard

Anomaly score between 0.0 (normal) and 1.0 (highly anomalous).