heaviness {eba} | R Documentation |
Fifty subjects were presented with all 20 ordered pairs of bottles filled with lead shot and asked to choose the bottle that felt heavier. The weight of the bottles was 90, 95, 100, 105, and 110 grams, respectively. Choice frequencies were aggregated across subjects for the two within-pair presentation orders.
data(heaviness)
A 3d array consisting of two square matrices:
heaviness[,,"order1"]
heaviness[,,"order2"]
Beaver, R.J., Gokhale, D.V. (1975). A model to incorporate within-pair order effects in paired comparisons. Communications in Statistics, 4, 923–939.
data(heaviness) ## 6 subjects chose 90g over 100g, when 90g was presented first. heaviness["90g", "100g", "order1"] ## 44 subjects chose 100g over 90g, when 90g was presented first. heaviness["100g", "90g", "order1"] ## 14 subjects chose 90g over 100g, when 90g was presented second. heaviness["90g", "100g", "order2"] ## 36 subjects chose 100g over 90g, when 90g was presented second. heaviness["100g", "90g", "order2"]