For a frequency analysis of
more than two variables, use PROC FREQ to create n-way
crosstabulations. A series of two-way tables is produced, with a table
for each level of the other variables.
For example, suppose
you want to add the variable Sex to your crosstabulation of Weight
and Height in the data set Clinic.Diabetes. Add Sex to the TABLES
statement, joined to the other variables with an asterisk (*).
tables sex*weight*height;