tabsdata.tableframe.expr.expr.Expr.not_#
- Expr.not_() Expr [source]#
Negate a boolean expression.
Example:
>>> import tabsdata as td >>> >>> tf: td.TableFrame ... >>> >>> tf = tf.select(td.col("val"), td.col("val").not_().alias("not")) >>> ┌───────┬───────┐ │ val ┆ not │ │ --- ┆ --- │ │ bool ┆ bool │ ╞═══════╪═══════╡ │ true ┆ false │ │ false ┆ true │ │ null ┆ null │ └───────┴───────┘