Do `normalize_entity()`, `add_relationships()` are logically same in featuretools?
问题 Example: buy_log_df = pd.DataFrame( [ ["2020-01-01", 0, 1, 2, 2, 200], ["2020-01-02", 1, 1, 1, 3, 100], ["2020-01-02", 2, 2, 1, 1, 100], ["2020-01-03", 3, 3, 3, 1, 300], ], columns=['date', 'sale_id', 'customer_id', "item_id", "quantity", "price"] ) es = ft.EntitySet(id="sale_set") es = es.entity_from_dataframe( "sales", dataframe=buy_log_df, index="sale_id", time_index='date' ) es = es.normalize_entity( new_entity_id="items", base_entity_id="sales", index="item_id", additional_variables=[