I have two dataframes A and B. A has an id user_id
that is the unique id of the user and each row in this dataframe represents whether or not the user made a purchase. This has a timestamp for each instance of userid
appearing in it. each user_id
can make multiple purchases of different objects at different times. I have another table that has user_id associated with its history of window shopping along with a timestamp of this instance of window shopping and also contains the specifics of the item that the user_id was window shopping. As you can see there are multiple instances of user_id
in this as well
featuretools documentation says
Note that each ft.Relationship must denote a one-to-many relationship rather than a relationship which is one-to-one or many-to-many.