Skip to main content

Column.<

<other

Group: Operators
Aliases: less than

Documentation

Element-wise order comparison.

Returns a column with results of comparing this column's elements against other.

Arguments

  • other: The value to compare self against. If other is a column, the comparison is performed pairwise between corresponding elements of self and other.

Examples

Compare two columns for pairwise less-than.

      import Standard.Examples

example_lt = Examples.integer_column < Examples.decimal_column

Compare a column with a number.

      import Standard.Examples

example_lt = Examples.integer_column < 1