transpose list of lists (summarize()) without a for loop
Can anyone think of a way to transpose a list of lists like what comes from the following script so that each row is grouped together instead of by column.
I know I can do it with a for loop but I'm wondering if there's anything better or less brute.
Names default to here(1);
dt = open("$SAMPLE_DATA\Big Class.jmp");
summarize(dt, d = By(:age, :sex));
rows = nitems(d);
cols = nitems(d[1]);
s...
vince_faller