If I have a large list of items, each with a list of attributes which can contain multiple (or no) scores, what would be a good method for ranking these items fairly taking into account possibly unequal amount of information known about each item?
For example:
Item1
Attribute1 Values (70) Attribute2 Values (90) Attribute3 Values (null)
Item2
Attribute1 Values (50; 60; 70) Attribute2 Values (90) Attribute3 Values (10)
Here, simply averaging values would rank Item1 higher than Item2 - but in practice they /could/ be identical because Item2 simply has more data known. Can anyone suggest a method for comparing and ranking data like this?