/*-----------------------------------------------------------------* | Name: gscatmat.sas | | Title: Scatterplot matrix of main Guerry variables | | ----------------------------------------------------------------| | Macros: scatmat | | ----------------------------------------------------------------| | Author: Michael Friendly | | Created: 22 Oct 2006 16:15:57 | *-----------------------------------------------------------------*/ title 'Scatterplot matrix of main Guerry variables'; title; %include data(guerry); %include goptions; *goptions xpixels=600 ypixels=600; %scatmat(data=guerry, var=Crime_pers Crime_prop Literacy Suicides Infants Donations, interp=rl, anno=ellipse lowess, htitle=11);