Created
July 9, 2017 07:16
-
-
Save FranciscusRenatus/5332540c289914a910948bc1710912f3 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
# Data Preprocessing | |
dataset = pd.read_csv('Market_Basket_Optimisation.csv', header = None) | |
transactions = [] | |
for i in range(0, 7501): | |
transactions.append([str(dataset.values[i,j]) for j in range(0, 20)]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment