Method: Polars::Functions#head
- Defined in:
- lib/polars/functions/lazy.rb
#head(column, n = 10) ⇒ Expr
Get the first n
rows.
This function is syntactic sugar for col(column).head(n)
.
620 621 622 |
# File 'lib/polars/functions/lazy.rb', line 620 def head(column, n = 10) col(column).head(n) end |