bind {OpenRepGrid} | R Documentation |
Concatenate the constructs of two grids.
Description
I.e. the constructs are combined to form one long grid. This function can be used in order to analyze multiple grids as one 'big grid' (eg. Slater, 1977, chap. 11).
Usage
bind(x, y, match = TRUE, index = TRUE)
Arguments
x |
|
y |
|
match |
If the elements do not have the same order they
are reordered to match the element order of the first grid 'x'
(if |
index |
TODO. Logical (default |
Value
repgrid
object
References
Slater, P. (1977). The measurement of intrapersonal space by grid technique. London: Wiley.
Examples
## Not run:
a <- randomGrid()
b <- randomGrid()
elements(b) <- rev(elements(a)) # reverse elements
bindConstructs(a, b)
bindConstructs(a, b, m = F) # no binding
## End(Not run)
[Package OpenRepGrid version 0.1.18 Index]