Hi,
I'm know to the RapidMiner, so the question might be dump, but I hope you'll help me anyway.
I want to use the AssociationRuleGenerator and I found the Tutorial on how to use it, but my Input Format is different and I'm not shure how to configure RapidMiner to work with my input.
I've two formats available:
1. 1NF
A CSV file with two columns. The first column contains the transaction-ID, the second the items.
Example:
2. Binary Bitmap
A CSV file with the transaction-ID and the items as columns. The values for the items are 0 and 1 to indicate wether the transaction contains the item or not.
Example:
TID | 1 | 2 | 3 |
0 | 1 | 1 | 1 |
1 | 1 | 0 | 1 |
... | ... | ... | ... |
Can anyone tell me how I can use one or both of the formats for generating association rules? I would personally prefer the first format, since we need to convert the data to get the second, but any solution which makes it work will really help me.
Thanks a lot in advance,
Stampede