BookmarkSubscribeRSS Feed
Debashish_
Calcite | Level 5

Hello,
 can anyone help me out. I have attached an Image of a tabulate structure which I have tried but couldn't.

Someone tell me or share the code how to create that. 

 

Untitled.png

4 REPLIES 4
PeterClemmensen
Tourmaline | Level 20

What does your data look like? We can not give you a code answer if we don't know what your data looks like 🙂

Reeza
Super User

Tabulate is usually used when you want to summarize data. There's nothing indicated in your requirements that show the need for summarization. This would be better suited to PROC REPORT or PRINT. 

 

Screen Shot 2017-11-19 at 1.14.07 PM.png

 

PROC TABULATE also would need a statistic, here's an example of PROC TABULATE.

 

proc tabulate data=class;
by sex;
class name age height;
table name*age*height , N ;
run;

sas-innovate-wordmark-2025-midnight.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.


Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1280 views
  • 0 likes
  • 4 in conversation