Method: Polars::Functions#len
- Defined in:
- lib/polars/functions/len.rb
#len ⇒ Expr Also known as: length
Return the number of rows in the context.
This is similar to COUNT(*) in SQL.
44 45 46 |
# File 'lib/polars/functions/len.rb', line 44 def len Utils.wrap_expr(Plr.len) end |