EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Whether the left side is less than the right.
| Variable | Type | Description |
|---|---|---|
| b1 | INT64 / TIME64NS / FLOAT64 / STRING | Left side of the expression. |
| b2 | INT64 / TIME64NS / FLOAT64 / STRING | Right side of the expression. |
# Implict call.df.lt = df.a < df.bExplicit call.df.lt = px.lessThan(df.a, df.b)