0 votes
in Software Defined Networking by
How to generate cross tabulation?

1 Answer

0 votes
by

Use PROC FREQ code.

PROC FREQ DATA=auto;

 TABLES A*B ;

RUN;

SAS will produce table of A by B.

...