Hello,
I am trying to create a frequency chart using proc freq.
But it also prints out the table. -- I do NOT want the table printed out.
Also, I want all "type" to be in 1 page NOT split across multiple pages.
Please advise. Here is the code:
ods graphics on;
proc freq data=sashelp.cars;
tables cylinders*type / missing norow nocol nopercent nocum plots(only)=freqplot(type = bar);
where origin = "Asia" and type ne "Sedan";
run;
ods graphics off;