alteryx / alteryx/featuretools
Investigate InputTypes for MultiplyNumericBoolean
- Dominant language
- Python
- Stars
- 7.7k
- Forks
- 915
- PR merge metrics
- No merged PRs in 30d
Description
MultiplyNumericBoolean is commutative, but includes explicit ordering in input_types:
```
input_types = [
[
ColumnSchema(semantic_tags={"numeric"}),
ColumnSchema(logical_type=Boolean),
],
[
ColumnSchema(semantic_tags={"numeric"}),
ColumnSchema(logical_type=BooleanNullable),
],
[
ColumnSchema(logical_type=Boolean),
ColumnSchema(semantic_tags={"numeric"}),
],
[
ColumnSchema(logical_type=BooleanNullable),
ColumnSchema(semantic_tags={"numeric"}),
],
]
```
Investigate if this is required
Contributor guide
Assessment
This issue has not been assessed yet.