def greatest(*args): """ Compute the largest value (row-wise, if any arrays are present) among the supplied arguments. Returns ------- greatest : type depending on arguments """ return _ops.Greatest(*args).to_expr()
def greatest(self, *args: ir.Value) -> ir.Value: """Compute the largest value among the supplied arguments. Parameters ---------- args Arguments to choose from Returns ------- Value Maximum of the passed arguments """ import ibis.expr.operations as ops return ops.Greatest([self, *args]).to_expr()