Expr.ge
methodView source ↗
def ge(other: Any) -> Expr
Categories: logic
Greater or equal operator.
Parameters
parameter
otherThe value to compare with.
Examples
>>> 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 │
└──────┴─────────┘