Login
Remember
Register
Ask a Question
How to generate cross tabulation?
0
votes
asked
Aug 22, 2024
in
Software Defined Networking
by
Robin
How to generate cross tabulation?
cross
tabulation
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2024
by
Robin
Use PROC FREQ code.
PROC FREQ DATA=auto;
TABLES A*B ;
RUN;
SAS will produce table of A by B.
...