series_sign()

Learn how to use the series_sign() function to calculate the element-wise sign of the numeric series input.

Calculates the element-wise sign of the numeric series input.

Syntax

series_sign(series)

Parameters

NameTypeRequiredDescription
seriesdynamic✔️An array of numeric values over which the sign function is applied.

Returns

A dynamic array of calculated sign function values. -1 for negative, 0 for 0, and 1 for positive. Any non-numeric element yields a null element value.

Example

print arr = dynamic([-6, 0, 8])
| extend arr_sign = series_sign(arr)

Output

arrarr_sign
[-6,0,8][-1,0,1]