bindConstructs: Concatenate the constructs of two or more grids.
Description
I.e. the constructs are combined to form one long grid.
The girds must have the same set of elements and an identical
scale range. The order of the elements may differ.
Usage
bindConstructs(..., index = FALSE)
Value
repgrid object with concatenated constructs.
Arguments
...
One or more repgrid objects or a list containing
repgrid object.
index
TODO. Logical (default TRUE). Whether to add an index at the end
of each construct name so it remains clear from which grid each
construct came.
Details
This function can be used in order to analyze multiple grids
as one 'big grid' (eg. Slater, 1977, chap. 11).
References
Slater, P. (1977). The measurement of intrapersonal space
by grid technique. London: Wiley.
a <- randomGrid()
b <- randomGrid()
elements(b) <- rev(elements(a)) # reverse elementsbindConstructs(a, b)
bindConstructs(a, b, a)
# using lists of repgrid objectsbindConstructs(a, list(a, b))