The subjects attribute enables between-subject variation of experiment procedures.
integer | A positive integer indicating which subject numbers should run the experiment. |
modulus | A positive integer indicating the modulus. |
The subjects attribute allows you to run different expts depending on the subject number that is entered when you run an Inquisit script. If given subject number will run the experiment if the following is true:
integer = remainder( subjectnumber / modulus )
Multiple expts can be defined in the script, allowing different subject numbers to be assigned to different experimental conditions. A single subject number can be assigned to multiple expts, in which case all of the assigned expts will be run for that subject number in the order they appear in the script.
The following expt is run for odd numbered subjects:
<expt>
/ blocks=[1-20=noreplace(testtrials, distractortrials)]
/ subjects = (1 of 2)
</expt>
The following expt is run for even numbered subjects:
<expt>
/ blocks=[1-20=noreplace(testtrials, distractortrials)]
/ subjects = (2 of 2)
</expt>
The following expt is run for second of every four subjects (i.e. subject numbers 2, 6, 10, 14, ...):
<expt>
/ blocks=[1-20=noreplace(testtrials, distractortrials)]
/ subjects = (1 of 4)
</expt>