I'm analyzing Mechanical Turk results. Each assignment was done three times, and I want to find all sets of three assignments that were agreed upon by the majority (2/3 or 3/3) of respondents.
Here's the basic setup:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]NAME[/TD]
[TD]STATUS[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]active[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]not.active[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]not.active[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]in.db[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]in.db.missing.info[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]not.in.db[/TD]
[/TR]
</tbody>[/TABLE]
As you see, there is a majority agreement (2/3) for Org 1, and no agreement (three different answers) for Org 2. Both columns contain strings. I know how to use EXACT, but I'm not sure how to do it in groups of three rows.
I need to find a way to tease out two things:
I've been using this board a lot lately, and always see great answers. This is one I couldn't find by searching. Thanks in advance for your help!
Here's the basic setup:
[TABLE="class: grid, width: 500, align: center"]
<tbody>[TR]
[TD]NAME[/TD]
[TD]STATUS[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]active[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]not.active[/TD]
[/TR]
[TR]
[TD]Org 1[/TD]
[TD]not.active[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]in.db[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]in.db.missing.info[/TD]
[/TR]
[TR]
[TD]Org 2[/TD]
[TD]not.in.db[/TD]
[/TR]
</tbody>[/TABLE]
As you see, there is a majority agreement (2/3) for Org 1, and no agreement (three different answers) for Org 2. Both columns contain strings. I know how to use EXACT, but I'm not sure how to do it in groups of three rows.
I need to find a way to tease out two things:
- Which organizations were not agreed upon by a majority (contained three different answers)? I'll need to flag these for review.
- When there was majority agreement, I need to create a list with the organization name and the correct status. It would be fantastic if I could also include all of the other data (not shown here) associated with each organization.
I've been using this board a lot lately, and always see great answers. This is one I couldn't find by searching. Thanks in advance for your help!