Customer_segmentation
Customer_segmentation copied to clipboard
Analysing the content of an E-commerce database that contains list of purchases. Based on the analysis, I develop a model that allows to anticipate the purchases that will be made by a new customer, d...
Results
1
Customer_segmentation issues
Sort by
recently updated
recently updated
newest added
ln [48 ]: set_entrainement = basket_price[basket_price['InvoiceDate'] < datetime.date(2011,10,1)] set_test = basket_price[basket_price['InvoiceDate'] >= datetime.date(2011,10,1)] basket_price = set_entrainement.copy(deep = True) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) in () ----> 1 set_entrainement...