polars.Expr.suffix#
- Expr.suffix(suffix: str) Self [source]#
Add a suffix to the root column name of the expression.
Deprecated since version 0.19.12: This method has been renamed to
name.suffix()
.- Parameters:
- suffix
Suffix to add to the root column name.
See also
Notes
This will undo any previous renaming operations on the expression.
Due to implementation constraints, this method can only be called as the last expression in a chain.
Examples
>>> df = pl.DataFrame( ... { ... "a": [1, 2, 3], ... "b": ["x", "y", "z"], ... } ... ) >>> df.with_columns(pl.all().reverse().name.suffix("_reverse")) shape: (3, 4) ┌─────┬─────┬───────────┬───────────┐ │ a ┆ b ┆ a_reverse ┆ b_reverse │ │ --- ┆ --- ┆ --- ┆ --- │ │ i64 ┆ str ┆ i64 ┆ str │ ╞═════╪═════╪═══════════╪═══════════╡ │ 1 ┆ x ┆ 3 ┆ z │ │ 2 ┆ y ┆ 2 ┆ y │ │ 3 ┆ z ┆ 1 ┆ x │ └─────┴─────┴───────────┴───────────┘