BookmarkSubscribeRSS Feed
csetzkorn
Lapis Lazuli | Level 10

I am using this:

 

 

proc tabulate data=SomeData;
	class Class1 Class2;
	table Class1, Class2;
run;

which shows N for each cell in this 2 dimensional scenario. How can I add a row percentage please? I tried:

 

proc tabulate data=SomeData;
	class Class1 Class2;
	table Class1*ROWPCTSUM, Class2;
run;

 

4 REPLIES 4
Astounding
PROC Star

Since you have only classification variables, and no analysis variables, there is no way to calculate PCTSUM.  You could switch to PCTN instead, if that's what you want (or ROWPCTN).  But to get the sum of something, SAS needs to know what variable you want to sum.

csetzkorn
Lapis Lazuli | Level 10
Thanks this contradicts the book: PROC TABULATE by Example, Second Edition but maybe the book is wrong ...
ballardw
Super User

@csetzkorn wrote:
Thanks this contradicts the book: PROC TABULATE by Example, Second Edition but maybe the book is wrong ...

Please copy the text you are referencing to the forum. The book has a LOT of examples and many of them involve percentages in one form or another. It is hard to comment on something unseen...

 

 

PaigeMiller
Diamond | Level 26

A "thinking out of the box" reply

 

There are a number of concepts that I find difficult or confusing in PROC TABULATE, including all the percent options, but are very easy to get right in a data step of some sort. So my usual method is to get all the rows and columns to look the way I want in a data step (often using PROC SUMMARY), and then use PROC REPORT or even PROC PRINT to create the final table.

--
Paige Miller

sas-innovate-white.png

Missed SAS Innovate in Orlando?

Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.

 

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
  • 1880 views
  • 0 likes
  • 4 in conversation