EXPAND ALL
  • Home

lessThan

Returns: BOOLEAN

Whether the left side is less than the right.

Arguments

VariableTypeDescription
b1INT64 / TIME64NS / FLOAT64 / STRINGLeft side of the expression.
b2INT64 / TIME64NS / FLOAT64 / STRINGRight side of the expression.

Examples:

# Implict call.
df.lt = df.a < df.b
Explicit call.
df.lt = px.lessThan(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.