How to know the type of features (numeric, categorial) that Featuretools generates?
Asked
Active
Viewed 66 times
1 Answers
3
In the generated feature definitions, there is a variable_type
attribute to see the type of feature.
feature_matrix, feature_defs = ft.dfs(target_entity='customers', entityset=es)
feature_defs[1], feature_defs[1].variable_type
(<Feature: COUNT(sessions)>, featuretools.variable_types.variable.Numeric)
Let me know if that helps.

Jeff Hernandez
- 2,063
- 16
- 20