Skip to content

Instantly share code, notes, and snippets.

@prateekjoshi565
Created July 28, 2019 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save prateekjoshi565/15891ccc6299c80fe717548bcaed42d8 to your computer and use it in GitHub Desktop.
Save prateekjoshi565/15891ccc6299c80fe717548bcaed42d8 to your computer and use it in GitHub Desktop.
# list to capture purchase history of the customers
purchases_val = []
# populate the list with the product codes
for i in tqdm(validation_df['CustomerID'].unique()):
temp = validation_df[validation_df["CustomerID"] == i]["StockCode"].tolist()
purchases_val.append(temp)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment