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 arg2.
Variable | Type | Description |
---|---|---|
arg1 | INT64 / TIME64NS / FLOAT64 / STRING | The value to be compared to. |
arg2 | INT64 / TIME64NS / FLOAT64 / STRING | The value to check if it is greater than the first argument. |
# Implict call.df.gt = df.a > df.bExplicit call.df.gt = px.greaterThan(df.a, df.b)