Have log file Need multiple binomial attributes
I have following example data (each record recording one group membership):
User, Group
bill, 1
bill, 2
bill, 3
mary, 1
mary, 2
ed, 3
...
From the above I need example data that indicates the events that a user has generated event at least once. For example:
User, Group_1, Group_2, Group_3,...
bill, true, true, true
mary, false, true, false
ed, false, false, true
There are about about 8000 groups (numbered 1-8000).
The purpose of analysis is to create association rules for groups that identify connections between groups. (e.g. "user being a member of group 1, is also likely to be a member of group 7)
Given the number of groups, perhaps there is a better way than the create association rules operator...