Does SAS cap out at a 5x5 scatter plot matrix? I'm trying to plot 7 variables, but only a 5x5 table comes up. Are there any work arounds?
Try setting the physical size of the graph larger, for example:
ods graphics / width=1000px height=1000px;
Hope this helps!
Dan
Thank you, but it just made everything bigger - still have a 5x5 scatter plot matrix
Is this SGSCATTER, or a GTL template? Can you share any code?
Thanks!
Dan
The following produces a 7x7 matrix for me. Try this and see if it works for you:
proc sgscatter data=sashelp.cars;
matrix weight cylinders msrp mpg_city mpg_highway horsepower invoice;
run;
If your graph is produced with proc corr, you can use options NVAR=ALL | n and NWITH=ALL | n in the plots=matrix(<options>) request to override the maximum of 5 variables per panel.
Thanks everyone - it was my own mistake. The first subject in my sample was missing a couple of measurements. I ended up specifying the print-out for a subject who had all values for all measurement times.
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.