I have a data set of N people, T items. Let's say N=100, and T=10.
Each person goes through the following exercise.
- She is shown 2 random items from the set of T=10, and ranks them as rank 1 and 2.
- She is next shown 2 more random items from the remaining 8 out of 10 items, and ranks as rank 1 and 2.
At the end, the data set is of size 100x10, where each row has 4 numeric entries (two of which will be 1, and the other two will be 2) and 6 empty entries.
My goal is to compare the 10 items against one another, and come up with an estimated rank value for a given item.
What is the best way to analyze such data ?
Thank you.