Method: Polars::Functions#mean
- Defined in:
- lib/polars/functions/lazy.rb
#mean(*columns) ⇒ Expr
Get the mean value.
This function is syntactic sugar for col(columns).mean.
299 300 301 |
# File 'lib/polars/functions/lazy.rb', line 299 def mean(*columns) col(*columns).mean end |