W3cubDocs

/Nushell

dfr all-false for dataframe

Returns true if all values are false.

Signature

> dfr all-false {flags}

Input/output types:

input output
any any

Examples

Returns true if all values are false

> [falsefalsefalse] |dfr into-df|dfr all-false
╭───┬───────────╮
# │ all_false │
├───┼───────────┤
0true
╰───┴───────────╯

Checks the result from a comparison

>lets= ([56210] |dfr into-df);
letres= ($s>9);
$res|dfr all-false
╭───┬───────────╮
# │ all_false │
├───┼───────────┤
0false
╰───┴───────────╯

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_all-false.html