Method: Polars::Functions#any
- Defined in:
- lib/polars/functions/aggregation/vertical.rb
permalink #any(*names, ignore_nulls: true) ⇒ Expr
Evaluate a bitwise OR operation.
Syntactic sugar for col(names).any
.
80 81 82 |
# File 'lib/polars/functions/aggregation/vertical.rb', line 80 def any(*names, ignore_nulls: true) col(*names).any(drop_nulls: ignore_nulls) end |