EXPAND ALL
  • Home

logicalAnd

Returns: BOOLEAN

True if both expressions are Truthy otherwise False.

Arguments

VariableTypeDescription
b1INT64 / BOOLEANLeft side of the AND.
b2INT64 / BOOLEANRight side of the AND.

Examples:

# Implicit call.
df.can_filter_and_has_data = df.can_filter and df.has_data
# Explicit call.
df.can_filter_and_has_data = px.logicalAnd(df.can_filter, df.has_data)
This site uses cookies to provide you with a better user experience. By using Pixie, you consent to our use of cookies.