Frequency in SAS
Used using the proc freq statement
proc freq data=work.test;
run;
proc freq data=work.test;
table post;
run;
proc freq data=work.test;
table post project;
run;
proc freq data=work.test;
table post*project;
run;
proc freq data=work.test;
table post*project*salary;
run;
proc freq data=work.test;
table post*rating/list;
run;
proc freq data=work.test;
table post/nofreq;
run;
proc freq data=work.test;
table post/nopercent;
run;
proc freq data=work.test;
table post;
table project/nocum;
run;
proc freq data=work.test;
table post*rating/norow;
run;
proc freq data=work.test;
table post*rating/norow nopercent;
run;
proc freq data=work.test;
table post*rating/norow nopercent nofreq;
run;