Method: Polars::Expr#upper_bound

Defined in:
lib/polars/expr.rb

#upper_boundExpr

Calculate the upper bound.

Returns a unit Series with the highest value possible for the dtype of this expression.

Examples:

df = Polars::DataFrame.new({"a" => [1, 2, 3, 2, 1]})
df.select(Polars.col("a").upper_bound)
# =>
# shape: (1, 1)
# ┌─────────────────────┐
# │ a                   │
# │ ---                 │
# │ i64                 │
# ╞═════════════════════╡
# │ 9223372036854775807 │
# └─────────────────────┘

Returns:


6103
6104
6105
# File 'lib/polars/expr.rb', line 6103

def upper_bound
  _from_rbexpr(_rbexpr.upper_bound)
end