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!
Proc freq data=sashelp.class;
Table sex*age / out=want outpct;
Run;
Proc freq data=sashelp.class;
Table sex*age / out=want outpct;
Run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.