EXPAND ALL
  • Home

greaterThanEqual

This function is implicitly invoked by the >= operator.

Returns: BOOLEAN

Boolean of whether arg1 is greater than or equal to arg2.

Arguments

VariableTypeDescription
arg1INT64 / FLOAT64 / STRING / TIME64NSThe value to be compared to.
arg2INT64 / FLOAT64 / STRING / TIME64NSThe value to check if it is greater than or equal to the first argument.

Examples:

# Implict call.
df.gte = df.a >= df.b
Explicit call.
df.gte = px.greaterThanEqual(df.a, df.b)
This site uses cookies to provide you with a better user experience. By using Pixie, you consent to our use of cookies.