I am using R.
I have a database that looks like this :
Price A Price B
1 3
3 2
1 3
2 4
3 2
3 2
3 3
What I would like to do is to count the number of occurence of each couple (Price A, Price B) and know which couples is the most prominent (let's say the three more prominent couples) and their frequency.
I really don't know how to do it.
For instance here:
(3,2) : 3 times
(1,3) : 2 times
(2,4) : 1 time
(3,3) : 1 time