Displaying 1 result from an estimated 1 matches for "mat5g".
Did you mean:
mat2g
2008 Jun 21
2
Generating groupings of ordered observations
...= TRUE)
mat4g <- matrix(c(1,1,1,1,1,1,1,1,1,1,
2,2,2,2,2,2,1,1,1,1,
3,3,3,2,2,2,2,2,2,1,
4,3,3,3,3,2,3,3,2,2,
4,4,3,4,3,3,4,3,3,3,
4,4,4,4,4,4,4,4,4,4),
nrow = 6, ncol = 10, byrow = TRUE)
mat5g <- matrix(c(1,1,1,1,1,
2,2,2,2,1,
3,3,3,2,2,
4,4,3,3,3,
5,4,4,4,4,
5,5,5,5,5),
nrow = 6, ncol = 5, byrow = TRUE)
cbind(rep(1,6), mat2g, mat3g, mat4g, mat5g, 1:6)
I'd like to be able to...