如何对 featuretools 中的一个特征具有多个值的实体进行规范化?

How to normalize the entity having multiple values for the one feature in featuretools?

下面是一个例子:

buy_log_df = pd.DataFrame(
    [
        ["2020-01-02", 0, 1, 2, 2],
        ["2020-01-02", 1, 1, 1, 3],
        ["2020-01-02", 2, 2, 1, 1],
        ["2020-01-02", 3, 3, 3, 1],
    ],
    columns=['date', 'sale_id', 'customer_id', "item_id", "quantity"]
)

item_df = pd.DataFrame(
    [
        [1, 100],
        [2, 200],
        [3, 300],
    ],
    columns=['item_id', 'price']
)

item_df2 = pd.DataFrame(
    [
        [1, '1 3 10'],
        [2, '1 3'],
        [3, '2 5'],
    ],
    columns=['item_id', 'tags']
)

正如您在此处看到的,item_df 中的每个项目都有 多个 标记值作为一个特征。

这是我试过的方法:

item_df2 = pd.concat([item_df2, item_df2['tags'].str.split(expand=True)], axis=1)
item_df2 = pd.melt(
    item_df2,
    id_vars=['item_id'],
    value_vars=[0,1,2],
    value_name="tags"
)
tag_log_df = item_df2[item_df2['tags'].notna()].drop("variable", axis=1,).sort_values("item_id")
tag_log_df

>>>

   item_id tags
0        1    1
3        1    3
6        1   10
1        2    1
4        2    3
2        3    2
5        3    5

我似乎无法规范化此项目实体(来自 buy_log 实体),因为它在 table.

中有多个重复的 item_id

在设计entityset时如何处理这种情况?

感谢提问。要处理多个标签值,您可以在构建实体集之前将标签规范化为数据框。

buy_log_df

       date  sale_id  customer_id  item_id  quantity
 2020-01-02        0            1        2         2
 2020-01-02        1            1        1         3
 2020-01-02        2            2        1         1
 2020-01-02        3            3        3         1

item_df

 item_id  price
       1    100
       2    200
       3    300

tag_log_df

 item_id tags
       1    1
       1    3
       1   10
       2    1
       2    3
       3    2
       3    5

有了规范化的数据,您就可以构造实体集了。

es = ft.EntitySet()

es.entity_from_dataframe(
    entity_id='buy_log',
    dataframe=buy_log_df,
    index='sale_id',
    time_index='date',
)

es.entity_from_dataframe(
    entity_id='item',
    dataframe=item_df,
    index='item_id',
)

es.entity_from_dataframe(
    entity_id='tag_log',
    dataframe=tag_log_df,
    index='tag_log_id',
    make_index=True,
)

parent = es['item']['item_id']
child = es['buy_log']['item_id']
es.add_relationship(ft.Relationship(parent, child))

child = es['tag_log']['item_id']
es.add_relationship(ft.Relationship(parent, child))