EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
This function is implicitly invoked by the >= operator.
Boolean of whether arg1 is greater than or equal to arg2.
Variable | Type | Description |
---|---|---|
arg1 | INT64 / FLOAT64 / STRING / TIME64NS | The value to be compared to. |
arg2 | INT64 / FLOAT64 / STRING / TIME64NS | The value to check if it is greater than or equal to the first argument. |
# Implict call.df.gte = df.a >= df.bExplicit call.df.gte = px.greaterThanEqual(df.a, df.b)