block.random {psych} | R Documentation |
Create a block randomized structure for n independent variables
Description
Random assignment of n subjects with an equal number in all of N conditions may done by block randomization, where the block size is the number of experimental conditions. The number of Independent Variables and the number of levels in each IV are specified as input. The output is a the block randomized design.
Usage
block.random(n, ncond = NULL)
Arguments
n |
The number of subjects to randomize. Must be a multiple of the number of experimental conditions |
ncond |
The number of conditions for each IV. Defaults to 2 levels for one IV. If more than one IV, specify as a vector. If names are provided, they are used, otherwise the IVs are labeled as IV1 ... IVn |
Value
blocks |
A matrix of subject numbers, block number, and randomized levels for each IV |
Note
Prepared for a course on Research Methods in Psychology https://personality-project.org/courses/205/205.syllabus.html
Author(s)
William Revelle
Examples
br <- block.random(n=24,c(2,3))
pairs.panels(br)
br <- block.random(96,c(time=4,drug=3,sex=2))
pairs.panels(br)