EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
True if both expressions are Truthy otherwise False.
Variable | Type | Description |
---|---|---|
b1 | INT64 / BOOLEAN | Left side of the AND. |
b2 | INT64 / BOOLEAN | Right side of the AND. |
# 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)