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 absolute value of the numeric series input.
series_abs(
series)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values over which the absolute value function is applied. |
Dynamic array of calculated absolute value. Any non-numeric element yields a null
element value.
print arr = dynamic([-6.5,0,8.2])
| extend arr_abs = series_abs(arr)
Output
arr | arr_abs |
---|---|
[-6.5,0,8.2] | [6.5,0,8.2] |