Created
July 28, 2019 18:24
-
-
Save prateekjoshi565/71df8f0a3d34103a4202017dd45eda3c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# list to capture purchase history of the customers | |
purchases_train = [] | |
# populate the list with the product codes | |
for i in tqdm(customers_train): | |
temp = train_df[train_df["CustomerID"] == i]["StockCode"].tolist() | |
purchases_train.append(temp) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment