我想测试一下azure databricks notebooks中的featuretools功能。然而,获得如下模块错误 ModuleNotFoundError: No module named 'featuretools' featuretools的源代码如下。https://docs.featuretools.com/en/stable/_modules/featuretools/feature_base
我正在尝试向实体中添加一个新变量。es['Product'].add_variable("inventory", data=inventory_series)TypeError: 'Series' objects are mutable, thus they cannot be hashedes['Product'].add_variable("inventory", data=inventory_series)
我得到
我试着按照featuretools.com上的文档来学习功能工具。代码: import featuretools as ft
transactions_df = data["transactions"zip_code": ft.variable_types.ZIPCode})
es 代码来源:https://docs.featuretools.com
我已经构建了一个实体集,这个实体集中的一个表被称为“检查”。我已经为这个表设置了time_index列,但是在运行dfs时,我收到警告"Using training_window but last_time_index is not set on entity inspections“。文档显示,这应该设置为一个序列: last_time_index (pd.Series) -所有子实体中每个实例的最后一个事件的时间索引。请注意,计算仍然正确,但我担心警告消息。