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-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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