W3cubDocs

/Nushell

dfr is-unique for dataframe

Creates mask indicating unique values.

Signature

> dfr is-unique {flags}

Input/output types:

input output
any any

Examples

Create mask indicating unique values

> [5666888] |dfr into-df|dfr is-unique
╭───┬───────────╮
# │ is_unique │
├───┼───────────┤
0true
1false
2false
3false
4false
5false
6false
╰───┴───────────╯

Create mask indicating duplicated rows in a dataframe

> [[a, b]; [12] [12] [33] [33] [11]] |dfr into-df|dfr is-unique
╭───┬───────────╮
# │ is_unique │
├───┼───────────┤
0false
1false
2false
3false
4true
╰───┴───────────╯

Tips: Dataframe commands were not shipped in the official binaries by default, you have to build it with --features=dataframe flag

Copyright © 2019–2023 The Nushell Project DevelopersLicensed under the MIT License.
https://www.nushell.sh/commands/docs/dfr_is-unique.html