Hi,
I m a student from Pakistan. I am not much familiar with Rapidminer. I am given a task of market basket analysis and have almost 10,000 rows of data to apply FP-growth and apriori.
My given data is in the format:
1 cheese, bread, milk
2 milk cake
3 cake, cheese, milk
and for apriori algorithm I need to convert data into binary matrix format like:
TID | cheese bread milk cake
1 | 1 1 1 0
2| 0 0 1 1
3| 1 0 1 1
how can I preprocess my data in rapidminer to get this format
thanks in advance