featuretools icon indicating copy to clipboard operation
featuretools copied to clipboard

Enumerate Primitive Type

Open dvreed77 opened this issue 2 years ago • 0 comments

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"

dvreed77 avatar Mar 29 '22 14:03 dvreed77