# Frequency in SAS
Used using the proc freq statement
## complete frequency table
```sas
proc freq data=work.test;
run;
```
## Frequency of only one variable. This uses the **table** keyword.
#### Table
```sas
proc freq data=work.test;
table post;
run;
```
## Two table
```sas
proc freq data=work.test;
table post project;
run;
```
## Two way tables
```sas
proc freq data=work.test;
table post*project;
run;
```
## Three way tables
```sas
proc freq data=work.test;
table post*project*salary;
run;
```
## List view
```sas
proc freq data=work.test;
table post*rating/list;
run;
```
## Removing cummulative value
```sas
proc freq data=work.test;
table post/nofreq;
run;
```
## Removing percentage
```sas
proc freq data=work.test;
table post/nopercent;
run;
```
## Removing cummulative values from only one in the two tables
```sas
proc freq data=work.test;
table post;
table project/nocum;
run;
```
## Removing row in the two way tables
```sas
proc freq data=work.test;
table post*rating/norow;
run;
```
## Removing row and percentage in the two way tables
```sas
proc freq data=work.test;
table post*rating/norow nopercent;
run;
```
## Removing row, percentage and freq as well in the two way tables
```sas
proc freq data=work.test;
table post*rating/norow nopercent nofreq;
run;
```