Method: Polars::Expr#limit
- Defined in:
- lib/polars/expr.rb
permalink #limit(n = 10) ⇒ Expr
Get the first n
rows.
Alias for #head.
3159 3160 3161 |
# File 'lib/polars/expr.rb', line 3159 def limit(n = 10) head(n) end |
Get the first n
rows.
Alias for #head.
3159 3160 3161 |
# File 'lib/polars/expr.rb', line 3159 def limit(n = 10) head(n) end |