hi ... another idea that works with PDF output you can arrange output on a page with GOPTIONS and HSIZE, VSIZE, HORIGIN, and VORIGIN plus the STARTPAGE=NEVER option in ODS once you have the PDF output, if you can do a screen capture, you can make a bit-mapped version (e.g. PNG) proc sort data=sashelp.cars out=cars; by horsepower; run; ods pdf file='z:\plots.pdf' startpage=never notoc; ods listing close; ods results off; goptions reset=all ftext='calibri' htext=2 gunit=pct ; * no axis labels; axis1 label=none order=10 to 50 by 5 minor=(n=4); axis2 label=none order=50 to 400 by 50 minor=(n=5); * a nice looking DOT plus a spline; symbol1 f='wingdings' v='l' h=2 i=smp90 w=2; * some white space around plots; title1 ls=2; title2 a=90 ls=2; title3 a=-90 ls=2; goptions hsize=4in vsize=5in; proc gplot data=cars; goptions horigin=0in vorigin=0in; where type eq 'SUV'; footnote1 ls=2 h=3 'SUV'; plot mpg_highway*horsepower / noframe vaxis=axis1 haxis=axis2; run; goptions vorigin=5.5in; where type eq 'Truck'; footnote1 ls=2 h=3 'TRUCK'; plot mpg_highway*horsepower / noframe vaxis=axis1 haxis=axis2; run; goptions horigin=4.25in; where type eq 'Sedan'; footnote1 ls=2 h=3 'SEDAN'; plot mpg_highway*horsepower / noframe vaxis=axis1 haxis=axis2; run; quit; goptions vorigin=0in; footnote1 ls=2; proc gslide; note h=5 j=c 'DATA SET SASHELP.CARS' j=c h=3 j=c 'PLOTS OF MPG(HIGHWAY) VS HORSEPOWER' j=c '<more stuff>' ; run; quit; ods pdf close; ods listing; ods results;
... View more