I have a data look like:
So if I give the name for each row: a1 a2 b1 b2 c1 c2 d1 d2. The rule is: A B C D, you can swap position in each big row. I need to take set of 4 numbers, so I will have:
- a1 b1 c1 d1
- a2 b1 c1 d1
- a1 b2 c2 d2
- a2 b2 c2 d2
- a1 b1 c2 d2
- a2 b1 c2 d2
- a1 b1 c1 d2
- a2 b1 c1 d2
- a1 b2 c1 d2
- a2 b2 c1 d2
- a1 b1 c1 d2
- a2 b1 c1 d2
- a1 b1 c2 d1
- a2 b1 c2 d1
- a1 b2 c2 d1
- a2 b2 c2 d1
So when I changed the number I will have many set of data. How can I filter to take unique of data set. And count how many times It appear for each unique set.