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
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.