I'm new to SAS so looking for advices/ideas here..
Essentially I want to create summary table/report containing number of observations, percentages of certain group and means.
Consider the following example:
A/C No Status DaysToStatus
1 Suspend 10
2 Blocked 20
3
4 Suspend 20
My intended output/report is something like:
Average Days To Suspend Average Days to Blocked % Suspend %Blocked
15 20 50% 25%
I can do the average easily using Proc Report function but I am struggling to incorporate the observations and its percentages even with Compute function.
Any ideas on how I go about in doing this?