EXPAND ALL
- Home
- About Pixie
- Installing Pixie
- Using Pixie
- Tutorials
- Reference
True if either expression is Truthy or both expressions are Truthy, otherwise False.
Variable | Type | Description |
---|---|---|
b1 | INT64 / BOOLEAN | Left side of the OR. |
b2 | INT64 / BOOLEAN | Right side of the OR. |
# Implicit call.df.can_filter_or_has_data = df.can_filter or df.has_data# Explicit call.df.can_filter_or_has_data = px.logicalOr(df.can_filter, df.has_data)