EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
Whether the left side is less than or equal to the right.
Variable | Type | Description |
---|---|---|
b1 | INT64 / FLOAT64 / TIME64NS / STRING | Left side of the expression. |
b2 | INT64 / FLOAT64 / TIME64NS / STRING | Right side of the expression. |
# Implicit call.df.lte = df.cpu1 <= df.cpu2# Explicit call.df.lte = px.lessThanOrEqual(df.cpu1, df.cup2)