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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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