Created
July 28, 2019 18:40
-
-
Save prateekjoshi565/b167a313524e3634515e6037b0a5f5e2 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
products = train_df[["StockCode", "Description"]] | |
# remove duplicates | |
products.drop_duplicates(inplace=True, subset='StockCode', keep="last") | |
# create product-ID and product-description dictionary | |
products_dict = products.groupby('StockCode')['Description'].apply(list).to_dict() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment