使用此工具时遇到一些问题: 我的几个实体都有“ id”和“ time”,当然还有一些其他记录。
由于它每天记录每个id的活动数据,因此我的id在表中不是唯一的。我想通过id建立关系,但是似乎不起作用。我想知道Featuretools是否支持这种功能。
Class featuretools.Relationship(parent_variable, child_variable)
其parent_variable
和child_variable
仅接受具有唯一值的列吗?
或者我可以使用一个实体来创建一些agg_primitives
参数,如以下官方文档中所述?
In [3]: feature_matrix, feature_defs = ft.dfs(entityset=es,
...: target_entity="customers",
...: agg_primitives=["mean","max", "min", "std", "skew"],
...: trans_primitives=["time_since_previous"])
我是第一次使用它,我很困惑。