You might try regions:
data end;
input Plan;
datalines;
1
1
1
1
2
2
2
2
3
3
3
3
4
4
4
4
;
run;
ods pdf file="file.pdf" notoc;
ods layout start
x=0in y=0in
width=8.5in height=11in;
* region 1, as wide as the page, half the height, essentially one column;
ods region x=0in y=0in
width=8.5in height=5.5in;
proc freq data= end;
tables plan;
run;
* region 2, half the page width, starts halfway down, the left of two;
ods region x=0in y=5.5in
width=4in height=5.5in;
proc freq data= end;
tables plan;
run;
* region 3, half the page width, starts halfway down and halfway across, the right of two;
ods region x=4.25in y=5.5in
width=4in height=5.5in;
proc freq data= end;
tables plan;
run;
ods layout end;
ods pdf close;
You can tweak the measurements to adjust sizes and move things around. Maybe kill region 3 and see if stuff from region 2 spills over to two columns. Or maybe you can explicitly designate two columns in that region. I don't know. Experiment.
... View more