featuretools
featuretools copied to clipboard
Enumerate Primitive Type
As a developer, Primitive Types should be enumerated to improve maintainability and consistency.
Code Example
# featuretools/types.py
class PrimitiveTypes(Enum):
AGGREGATION = "aggregation"
TRANSFORM = "transform"
WHERE = "where"
GROUPBY_TRANSFORM = "groupby transform"