Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
In this article
Applies to: ✅ Azure Data Explorer ✅ Azure Monitor ✅ Microsoft Sentinel
Calculates the element-wise greater (>
) logic operation of two numeric series inputs.
series_greater(
series1,
series2)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series1, series2 | dynamic |
✔️ | The arrays of numeric values to be element-wise compared. |
Dynamic array of booleans containing the calculated element-wise greater logic operation between the two inputs. Any non-numeric element or non-existing element (arrays of different sizes) yields a null
element value.
print s1 = dynamic([1,2,4]), s2 = dynamic([4,2,1])
| extend s1_greater_s2 = series_greater(s1, s2)
Output
s1 | s2 | s1_greater_s2 |
---|---|---|
[1,2,4] | [4,2,1] | [false,false,true] |
For entire series statistics comparisons, see: