How to Get as Matrix
I am wondering if anyone knew how to get as matrix with specific row. For example, I would like to get as matrix with row(1),mat will be [12 59 95].Names Default To Here( 1 );
mat =
bigclass=Open( "$SAMPLE_DATA/Big Class.jmp" );
mat = bigclass << GetAsMatrix({2,3::5});
Show(mat);
[ 12 59 95,
12 61 123,
12 55 74,
12 66 145,
12 52 64,
12 60 84,
12 61 128,
12 51 79,
13 60 112,
13 61 107,
13 56 67,
13 65 9...