Get a mask of all unique rows in this DataFrame.
Description
Get a mask of all unique rows in this DataFrame.
Usage
<DataFrame>$is_unique()
Value
A polars Series
Examples
#> shape: (4, 1)
#> ┌───────┐
#> │ │
#> │ --- │
#> │ bool │
#> ╞═══════╡
#> │ false │
#> │ true │
#> │ true │
#> │ false │
#> └───────┘
#> shape: (2, 2)
#> ┌─────┬─────┐
#> │ a ┆ b │
#> │ --- ┆ --- │
#> │ f64 ┆ str │
#> ╞═════╪═════╡
#> │ 2.0 ┆ y │
#> │ 3.0 ┆ z │
#> └─────┴─────┘