Count unique values
Description
Return a count of the unique values in the order of appearance. This
method differs from
$value_counts()
in that it does
not return the values, only the counts and it might be faster.
Usage
<Expr>$unique_counts()
Value
Expr
Examples
#> shape: (3, 1)
#> ┌─────────┐
#> │ Species │
#> │ --- │
#> │ u32 │
#> ╞═════════╡
#> │ 50 │
#> │ 50 │
#> │ 50 │
#> └─────────┘