Conditional branching of IATs


Author
Message
Eimear
Eimear
Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)
Group: Awaiting Activation
Posts: 19, Visits: 148
Hello,

I was wondering if you could let me know if the following study design is possible with Inquisit: 
I want participants to do a total of three IATs but with a week delay between each one (we have just one perpetual web license so can’t have three scripts live at once). Is there is an option to have a participant first be presented with a screen in which they pick for instance A, B or C to be directed to a specific IAT script that we have told them to complete? As I would only want them to do one of the three IATs in a particular session I don’t think the <batch> or <include> functions are appropriate but it may be possible with branching?

Thanks very much. 
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 104K
<batch> is perfectly appropriate for that purpose. Set up three <batch> elements in a file:

<batch>
/ file  = "IAT_A.iqx"
/ subjects = (1 of 3)
/ groupassignment = groupnumber
</batch>

<batch>
/ file  = "IAT_B.iqx"
/ subjects = (2 of 3)
/ groupassignment = groupnumber
</batch>

<batch>
/ file  = "IAT_C.iqx"
/ subjects = (3 of 3)
/ groupassignment = groupnumber
</batch>

(In the three IAT scripts themselves, you'll probably want to change the /groupassignment in the <expt> elements to either subjectnumber or random.)

You register the file containing those <batch> elements as you active web script. You upload the IAT scripts and associated files (if any) in the next step. Set the launch page up to retrieve the group id from a URL query parameter via the web script wizard. Let's call this parameter 'IAT' for the sake of example.

Then you simply give your participants a different link for each week. For example, for participant X you might give her/her

Week 1: http://research.millisecond.com/yourusername/iatbatch.web?IAT=2
Week 2: http://research.millisecond.com/yourusername/iatbatch.web?IAT=1
Week 3: http://research.millisecond.com/yourusername/iatbatch.web?IAT=3

which means s/he'll complete IAT_B in the 1st week, IAT_A in the 2nd week and IAT_C in the 3rd.

You might give participant Y

Week 1: http://research.millisecond.com/yourusername/iatbatch.web?IAT=3
Week 2: http://research.millisecond.com/yourusername/iatbatch.web?IAT=2
Week 3: http://research.millisecond.com/yourusername/iatbatch.web?IAT=1

which means s/he'll complete IAT_C in the 1st week, IAT_B in the 2nd week and IAT_A in the 3rd, and so forth.

That way you (a) have full control over the assignment of IATs (if subjects are allowed to select the IAT to complete themselves, they might mistakenly complete the same IAT several times) and (b) don't have to delve into any complex branching or the like at all.

Hope this helps.

Eimear
Eimear
Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)Esteemed Member (1.8K reputation)
Group: Awaiting Activation
Posts: 19, Visits: 148
That sounds great, will give it a go. Thanks very much for all the detail. 



GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search