In python I have a data set with these columns:
ID_Order ID_Customer ID_Item DateTime_CartFinalize Amount_Gross_Order city_name_fa Quantity_item
It is for more than 200000 transactions.
I am going to use association rules. At the first step, I have to Change the DateTime_CartFinalize column to timestamp format using pd.Timestamp function. Before that, ensure that the date format in your digiasso.csv file is in this 2/11/18 12:29 AM format.
Hint: use the aggregate function.
???