Column.>=
>=other
Group: Operators
Aliases: greater than or equal
Documentation
Element-wise order comparison.
Returns a column with results of comparing this column's elements against other.
Arguments
- other: The value to compare- selfagainst. If- otheris a column, the comparison is performed pairwise between corresponding elements of- selfand- other.
Examples
Compare two columns for pairwise greater-than-or-equal.
      import Standard.Examples
      example_geq = Examples.integer_column >= Examples.decimal_column
Compare a column with a number.
      import Standard.Examples
      example_geq = Examples.integer_column >= 1