I’m trying to design a balanced within-subjects design using embedded data, but I’m struggling to make my design work.
Here’s a description of my study:
- IV1: Label type scenarios (Three labels: green, red, blue )
- IV2: Target type scenarios (Nine targets: A, B, C, D, E, F, G, H, I)
- Each target is paired with each label: so i have Target red A, blue A, green A.
Here’s a description of what I want my design to look like:
- each participant should see all 9 targets
- each participant should see each target once only (e.g., the target is a square. if they see the red square, they shouldn’t see the green or blue square)
- each participant should see three “green label”, three “red label”, and three “blue label” scenarios. for example: a participants might see the scenarios in this order: green A, blue B, red C, green D, blue E, red F, blue G, green H, red I. In this example, there are 3 greens, 3 blues, 3 reds, but each letter appears once.
my current embedded data looks something like this:
red_cond=0
If red_cond < 3, RED_eligibility = 1
dsame for green and blue]
RANDOMIZER FOR ALL 9 TARGETS:
GROUP TARGET A (but same method used for all groups):
RANDOMIZER:
If red Is Equal to 1:
SHOW TargetA_RED block
Red_cond = ${e://Field/Red_cond + 1}
If GREEN Is Equal to 1:
SHOW TargetA_GREEN block
GREEN_cond = ${e://Field/GREEN_cond + 1}
>SAME FOR BLUE]
The current logic constrains the targets correctly: I see each target only once. However, it doesn’t constrain the colors correctly. so i’m seeing something like (the order of the colors is random; it’s just that im not seeing three of each color):
Red A
Red B
Red C
Red D
Green E
Blue F
Green G
Blue H
Green I
Can you please explain how I can modify my survey flow to fix this?