Is there any simple code to divide a PDF page into 4 equal sized quadrants (essentially 2 columns and 2 rows where each of the 4 cells is equal size)?
I want to put 4 graphs on one page but don't really want to fuss with defining the x/y-coordinates or percents for ods layout;
So for example, in the upper left quadrant I may want to include a graph: proc sgplot; where year=1; run;
in the upper right corner I may want to include a graph: proc sgplot; where year=2; run;
in the lower right corner I want to include a graph: proc sgplot; where year=3; run;
and in the lower right corner I want to include a graph: proc sgplot; where year=4; run;
Any suggestions?
I want to put 4 graphs on one page but don't really want to fuss with defining the x/y-coordinates or percents for ods layout;
So for example, in the upper left quadrant I may want to include a graph: proc sgplot; where year=1; run;
in the upper right corner I may want to include a graph: proc sgplot; where year=2; run;
in the lower right corner I want to include a graph: proc sgplot; where year=3; run;
and in the lower right corner I want to include a graph: proc sgplot; where year=4; run;
Any suggestions?