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 floor function of the numeric series input.
series_floor(
series)
Learn more about syntax conventions.
Name | Type | Required | Description |
---|---|---|---|
series | dynamic |
✔️ | An array of numeric values on which the floor function is applied. |
Dynamic array of the calculated floor function. Any non-numeric element yields a null
element value.
print s = dynamic([-1.5,1,2.5])
| extend s_floor = series_floor(s)
Output
s | s_floor |
---|---|
[-1.5,1,2.5] | [-2.0,1.0,2.0] |