search for: mat2g

Displaying 1 result from an estimated 1 matches for "mat2g".

Did you mean: mat2
2008 Jun 21
2
Generating groupings of ordered observations
...rvations, the columns of the matrices below represent the groups that can be formed by placing the 6 ordered observations into 2-5 groups. Think of the columns of these matrices as being an indicator of group membership. We then cbind these matrices with the trivial partitions into 1 and 6 groups: mat2g <- matrix(c(1,1,1,1,1, 2,1,1,1,1, 2,2,1,1,1, 2,2,2,1,1, 2,2,2,2,1, 2,2,2,2,2), nrow = 6, ncol = 5, byrow = TRUE) mat3g <- matrix(c(1,1,1,1,1,1,1,1,1,1, 2,2,2,2,1,1,1,1,...