我正在尝试使用 featuretools 中的entity_from_dataframe
函数从数据框中创建一个实体。如果索引包含多于一列,有没有办法定义索引。我不确定是否需要列表、元组或其他数据结构。这是代码:
es=es.entity_from_dataframe(entity_id="credit",
dataframe=credit_df,
index=["ID1","ID2"]
)
它会产生以下关于哈希性的错误
类型错误:不可散列类型:“列表”