You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: specification/ml/_types/Anomaly.ts
+15Lines changed: 15 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,10 @@ export class Anomaly {
31
31
field_name?: string
32
32
function?: string
33
33
function_description?: string
34
+
/**
35
+
* If the detector function is `lat_long`, this object contains comma delimited strings for the latitude and longitude of the actual and typical values.
36
+
*/
37
+
geo_results?: GeoResults
34
38
influencers?: Influence[]
35
39
initial_record_score: double
36
40
is_interim: boolean
@@ -67,3 +71,14 @@ export class Influence {
67
71
influencer_field_name: string
68
72
influencer_field_values: string[]
69
73
}
74
+
75
+
exportclassGeoResults{
76
+
/**
77
+
* The actual value for the bucket formatted as a `geo_point`.
78
+
*/
79
+
actual_point: string
80
+
/**
81
+
* The typical value for the bucket formatted as a `geo_point`.
0 commit comments