EXPAND ALL
  • Home

lessThanEqual

Returns: BOOLEAN

Whether the left side is less than or equal to the right.

Arguments

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

Examples:

# Implicit call.
df.lte = df.cpu1 <= df.cpu2
# Explicit call.
df.lte = px.lessThanOrEqual(df.cpu1, df.cup2)
This site uses cookies to provide you with a better user experience. By using Pixie, you consent to our use of cookies.