Hi, Suppose I have p=3 categorical variables A, B, C and I would like frequency tables for each pair: A*B, A*C, B*C. Of course, I can run 3 PROC FREQ. But if I have p=10, there will be many more PROC FREQ. On the other hand, the following code can generate additional tables for A*A, B*B and C*C, which are not needed. PROC FREQ TABLES (A B C)*(A B C) Question: how to do this efficiently and generate tables only needed? Thanks!
... View more