tabsdata.tableframe.expr.expr.Expr.ge#
- Expr.ge(other: Any) Expr [source]#
Greater or equal operator.
- Parameters:
other – The value to compare with.
Example:
>>> import tabsdata as td >>> >>> tf: td.TableFrame ... >>> >>> tf = tf.select(td.col("temp"), td.col("temp").ge(1.0).alias("ge")) >>> ┌──────┬─────────┐ │ temp ┆ ge │ │ --- ┆ ------- │ │ f64 ┆ bool │ ╞══════╪═════════╡ │ 0.9 ┆ false │ │ 1.1 ┆ true │ └──────┴─────────┘