I have the following dataset containing scores on 3 dimensions (A, B, and C) for 12 items.
+---------+------+------+------+
| ........| ..A..| ..B..| ..C..|
+---------+------+------+------+
| Item 1 [FONT="]|[/FONT]| 4.42 | 2.65 | 4.17 |
| Item 2 [FONT="]|[/FONT]| 3.41 | 2.78 | 5.02 |
| Item 3 [FONT="]|[/FONT]| 5.03 | 2.86 | 6.64 |
| Item 4 [FONT="]|[/FONT]| 4.84 | 3.23 | 4.51 |
| Item 5 [FONT="]|[/FONT]| 4.39 | 3.53 | 4.69 |
| Item 6 [FONT="]|[/FONT]| 4.89 | 3.17 | 5.75 |
| Item 7 [FONT="]|[/FONT]| 3.43 | 2.85 | 4.31 |
| Item 8 [FONT="]|[/FONT]| 4.49 | 3.24 | 4.12 |
| Item 9 [FONT="]|[/FONT]| 5.09 | 2.80 | 2.39 |
| Item 10 | 3.75 | 4.02 | 4.95 |
| Item 11 | 5.60 | 3.10 | 6.62 |
| Item 12 | 5.25 | 3.04 | 4.67 |
+---------+------+------+------+
| Mean ...[FONT="]|[/FONT] 4.55 | 3.11 | 4.82 |
+---------+------+------+------+
I want to split this dataset into 3 groups (Group1, Group2, and Group3) that will contain 4 items each. In addition, Items must be distributed so that all groups share similar mean scores on all dimensions (which would also mean they're as close as possible to the total dimension mean) :
MeanAGroup1 ≈ MeanAGroup2 ≈ MeanAGroup3 ≈ 4.55
MeanBGroup1 ≈ MeanBGroup2 ≈ MeanBGroup3 ≈ 3.11
MeanCGroup1 ≈ MeanCGroup2 ≈ MeanCGroup3 ≈ 4.82
I am searching for the best solution : the solution that creates the 3 groups that are the most similar on all dimensions.
Each item may only appear in one group (I think this is called "replacement not allowed") and the order of items in each group does not matter (I think this is called "combination").
Thanks in advance,
+---------+------+------+------+
| ........| ..A..| ..B..| ..C..|
+---------+------+------+------+
| Item 1 [FONT="]|[/FONT]| 4.42 | 2.65 | 4.17 |
| Item 2 [FONT="]|[/FONT]| 3.41 | 2.78 | 5.02 |
| Item 3 [FONT="]|[/FONT]| 5.03 | 2.86 | 6.64 |
| Item 4 [FONT="]|[/FONT]| 4.84 | 3.23 | 4.51 |
| Item 5 [FONT="]|[/FONT]| 4.39 | 3.53 | 4.69 |
| Item 6 [FONT="]|[/FONT]| 4.89 | 3.17 | 5.75 |
| Item 7 [FONT="]|[/FONT]| 3.43 | 2.85 | 4.31 |
| Item 8 [FONT="]|[/FONT]| 4.49 | 3.24 | 4.12 |
| Item 9 [FONT="]|[/FONT]| 5.09 | 2.80 | 2.39 |
| Item 10 | 3.75 | 4.02 | 4.95 |
| Item 11 | 5.60 | 3.10 | 6.62 |
| Item 12 | 5.25 | 3.04 | 4.67 |
+---------+------+------+------+
| Mean ...[FONT="]|[/FONT] 4.55 | 3.11 | 4.82 |
+---------+------+------+------+
I want to split this dataset into 3 groups (Group1, Group2, and Group3) that will contain 4 items each. In addition, Items must be distributed so that all groups share similar mean scores on all dimensions (which would also mean they're as close as possible to the total dimension mean) :
MeanAGroup1 ≈ MeanAGroup2 ≈ MeanAGroup3 ≈ 4.55
MeanBGroup1 ≈ MeanBGroup2 ≈ MeanBGroup3 ≈ 3.11
MeanCGroup1 ≈ MeanCGroup2 ≈ MeanCGroup3 ≈ 4.82
I am searching for the best solution : the solution that creates the 3 groups that are the most similar on all dimensions.
Each item may only appear in one group (I think this is called "replacement not allowed") and the order of items in each group does not matter (I think this is called "combination").
Thanks in advance,
Last edited: