series_not_equals()

Learn how to use the series_not_equals() function to calculate the element-wise not equals (!=) logic operation of two numeric series inputs.

Calculates the element-wise not equals (!=) logic operation of two numeric series inputs.

Syntax

series_not_equals(series1, series2)

Parameters

NameTypeRequiredDescription
series1, series2dynamic✔️The arrays of numeric values to be element-wise compared.

Returns

Dynamic array of booleans containing the calculated element-wise not equal logic operation between the two inputs. Any non-numeric element or non-existing element (arrays of different sizes) yields a null element value.

Example

print s1 = dynamic([1,2,4]), s2 = dynamic([4,2,1])
| extend s1_not_equals_s2 = series_not_equals(s1, s2)

Output

s1s2s1_not_equals_s2
[1,2,4][4,2,1][true,false,true]

For entire series statistics comparisons, see: