Frequency charts produced by ODS Graphics and PROC FREQ might not be displayed on the same page


The panel of frequency charts produced by PROC FREQ and ODS Graphics might not be displayed on the same page. The PLOTS option NPANELPOS= in the TABLES statement enables you to specify the number of charts that are displayed on the same page.

The sample code below illustrates the syntax. In this case, five frequency charts are displayed on each page.

proc freq data=one; 
  tables a*b / plots=freqplot(npanelpos=5); 
run;