Check whether each value is the first occurrence
Description
Check whether each value is the first occurrence
Usage
<Expr>$is_first_distinct()
Value
Expr
Examples
library("polars")
as_polars_df(head(mtcars[, 1:2]))$
with_columns(is_ufirst = pl$col("mpg")$is_first_distinct())
#> shape: (6, 3)
#> ┌──────┬─────┬───────────┐
#> │ mpg ┆ cyl ┆ is_ufirst │
#> │ --- ┆ --- ┆ --- │
#> │ f64 ┆ f64 ┆ bool │
#> ╞══════╪═════╪═══════════╡
#> │ 21.0 ┆ 6.0 ┆ true │
#> │ 21.0 ┆ 6.0 ┆ false │
#> │ 22.8 ┆ 4.0 ┆ true │
#> │ 21.4 ┆ 6.0 ┆ true │
#> │ 18.7 ┆ 8.0 ┆ true │
#> │ 18.1 ┆ 6.0 ┆ true │
#> └──────┴─────┴───────────┘