alteryx / alteryx/featuretools
Investigate InputTypes for MultiplyNumericBoolean
- Lingua principale
- Python
- Stelle
- 7.7k
- Fork
- 915
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
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
Guida per i contributori
Apri la guida per i contributori
Valutazione
Questa issue non è ancora stata valutata.