ExperimentMFC 2.5. Randomization strategies

The 3 times 4 stimuli will have to be played in a certain order. For the least random order, you say

    randomize = <CyclicNonRandom>

In this case, the stimuli will be played in the order in which they were specified in the file, 3 times:

heed hid hood hud heed hid hood hud heed hid hood hud

The most likely case in which you would want to use this randomization strategy, is if you have, say, 120 different stimuli and you want to play them only once (numberOfReplicationsPerStimulus = 1) in a fixed order.

The other extreme, the most random order, is

    randomize = <WithReplacement>

In this case, a stimulus will be chosen at random 12 times without memory, for instance

hid hood hood heed hid hood hud hud hid hood heed hid

The order will probably be different for each listener. In this example, hood and hid occur four times each, heed and hud only twice each. This strategy is too random for most experiments. Usually, you will want to have the same number of replications of each stimulus. The most random way to do this is

    randomize = <PermuteAll>

In this case, all stimuli will be played exactly 3 times, for instance

heed hood hud hud hid heed heed hud hood hid hid hood

Quite often, you will want a less random order, namely one in which the 12 trials are divided into 3 blocks of 4 stimuli. Within each block, all 4 different stimuli occur in a random order:

    randomize = <PermuteBalanced>

In this case, each stimulus occurs exactly once within each block:

heed hood hud hid hood hud hid heed heed hud hood hid

This strategy ensures a certain spreading of the stimuli over the sequence of 12 trials. As we see here, it is still possible that the same stimulus (heed) occurs twice in a row, namely as the last stimulus of the second block and the first stimulus of the third. If you want to prevent that situation, you use

    randomize = <PermuteBalancedNoDoublets>

This will ensure that the same stimulus is never applied twice in a row:

heed hood hud hid hood hud hid heed hud heed hood hid

This randomization strategy is used in our example, and advised for most listening experiments in which you want to minimize effects of stimulus order.

The randomization procedure does not interfere in any way with the breaks. The order is determined before any breaks are inserted.

Links to this page


© ppgb 20051205