Hi,
Can anyone help me to understand how a simple tabular report/summary can be produced with SAS? I am looking for something like
for each department in an university, the number of students in each year with a total.
Department | Year 1 | Year 2 | year 3 | Total |
Economics | 60 | 55 | 61 | 176 |
Statistics | 50 | 48 | 49 | 147 |
Thanks in advance!
Selvan
Consider some fake data, created from SASHELP.SHOES so that the data has 2 different values for YEAR:
TABULATE & REPORT:
FREQ & MEANS:
Hope this helps to point you in the right direction.
Cynthia
I can't give you exact code until we can see the actual data, but any of these PROCs ought to work
REPORT
TABULATE
SUMMARY
FREQ
Consider some fake data, created from SASHELP.SHOES so that the data has 2 different values for YEAR:
TABULATE & REPORT:
FREQ & MEANS:
Hope this helps to point you in the right direction.
Cynthia
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.