Skip to content

Check greater or equal inequality

Source code

Description

Method equivalent of addition operator expr + other.

Usage

<Expr>$gt_eq(other)

Arguments

other numeric or string value; accepts expression input.

Value

Expr

Examples

library(polars)

pl$lit(2) >= 2
#> polars Expr: [(2.0) >= (2.0)]
pl$lit(2) >= pl$lit(2)
#> polars Expr: [(2.0) >= (2.0)]
pl$lit(2)$gt_eq(pl$lit(2))
#> polars Expr: [(2.0) >= (2.0)]