BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
cherryjingo
Calcite | Level 5

output.jpg

Hello!

I am wondering if I can let SAS automatically create a dataset from the pcts of the table in the picture attached.

so the layout of the created dataset can be:

 

S12    G8    RowPct    ColPct   

0         0       40.00       3.77

0         1       60.00       1.18

1         0       16.89       96.23

1         1        83.11      98.82

 

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User
 Proc freq data=sashelp.class;
Table sex*age / out=want outpct;
Run;

View solution in original post

2 REPLIES 2
Reeza
Super User
 Proc freq data=sashelp.class;
Table sex*age / out=want outpct;
Run;

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand in the Innovate Hub.

Watch Now →
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 2 replies
  • 3291 views
  • 0 likes
  • 2 in conversation