Is it possible to display row and column percentages next to cell values using Proc Tabulate?
Hi:
It depends on your data and what you mean by "next to cell values". In the program below, the ROWPCTN and COLPCTN are "next to" the count (N) for each crossing of AGE and SEX.
You should be able to run this program, since it uses SASHELP.CLASS. If you have specific PROC TABULATE questions, it is usually helpful if you show a sample of your data and the code that you have tried. Or, paste an example of what you want your results to look like, with a sample of your data.
cynthia
ods _all_ close;
title; footnote;
options missing=' ';
proc format;
picture pctf low-high='009.99%';
run;
ods html file='c:\temp\tab_pct.html' style=sasweb;
proc tabulate data=sashelp.class f=pctf.;
class age sex;
table age all,
sex*(n*f=3. rowpctn colpctn) all*(n*f=3. rowpctn colpctn);
keylabel all='Overall';
run;
ods html close;
Cynthia,
Thanks for your propmt and perfect solution. It is what I was looking for.
Girish Patel
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.