我在使用这个时遇到了一些问题:我的几个实体有“id”和“time”,当然还有其他一些记录。
由于它每天记录每个id的活动数据,所以我的id在一张表中不是唯一的。我想通过 id 建立关系,但它似乎不起作用。我想知道 featuretools 是否支持这样的功能。
Class featuretools.Relationship(parent_variable, child_variable)
它是否parent_variable
只child_variable
接受具有唯一值的列?
或者我可以使用单个实体来创建agg_primitives
下面官方文档中提到的一些参数吗?</p>
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"])
我第一次使用这个,我很困惑。