Hi: here's one example using PROC CORR (Example 20.10 Correlation and Covariance Matrices SAS/STAT(R) 9.3 User's Guide ) and here's another example using GTL discussed in this blog post How to build a correlations matrix heat map with SAS - The SAS Dummy cynthia
... View more
With both GPLOT and SGPLOT you can group your data, see sample below: proc gplot data=sashelp.class; plot age*height = sex ; run; quit; proc sgplot data=sashelp.class; series x=age y=height / group=sex ; run;
... View more
I find most graphs made with a single point to be less than optimum for most uses... You may end up restructuring data to get a good result from SAS graphical procs compared with the choices you may make with Excel or similar programs.
... View more
I think you should post in the Graphics forum you should get some expert help there. In the mean time you can start by looking at PROC GKPI
... View more