I'm doing some exploratory analysis on a dataset with 27 variables, of which maybe 24 have interesting numerical content. I'd like to look at a big draftsman's plot to see how each pair interact, however when I try to do something like that in CORR or SGSCATTER it continues to spit out the same 640x640 plot and shrinks the graphs.
Is there a way to make it create a big plot, instead of having to macro through and create a bunch of 6x6?
EDIT - my code:
ods rtf;
ods graphics on;
proc sgscatter data=home.byEpisode;
matrix var1
var2
var3 %* and so on until 27;
run;
ods rtf close;
ods graphics off;