* Iris3 Example Create a matrix of pairwise scatterplots; options ls=64 nodate pageno=1; ods graphics on; proc sgscatter data=sashelp.iris description="Fisher 1936 Iris Data"; matrix SepalLength SepalWidth PetalLength PetalWidth / group=species; ods graphics off; * Output graphics file will be in c:\Users\; run; quit;