Method: Polars::Expr#exclude
- Defined in:
- lib/polars/expr.rb
permalink #exclude(columns) ⇒ Expr
Exclude certain columns from a wildcard/regex selection.
You may also use regexes in the exclude list. They must start with ^
and end
with $
.
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 |
# File 'lib/polars/expr.rb', line 365 def exclude(columns) if columns.is_a?(::String) columns = [columns] return _from_rbexpr(_rbexpr.exclude(columns)) elsif !columns.is_a?(::Array) columns = [columns] return _from_rbexpr(_rbexpr.exclude_dtype(columns)) end if !columns.all? { |a| a.is_a?(::String) } || !columns.all? { |a| Utils.is_polars_dtype(a) } raise ArgumentError, "input should be all string or all DataType" end if columns[0].is_a?(::String) _from_rbexpr(_rbexpr.exclude(columns)) else _from_rbexpr(_rbexpr.exclude_dtype(columns)) end end |