Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to generate cross tabulation?
Home
Software Defined Networking
How to generate cross tabulation?
asked
Aug 22
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
by
Robin
Use PROC FREQ code.
PROC FREQ DATA=auto;
TABLES A*B ;
RUN;
SAS will produce table of A by B.
...