If you need a dataset:
Proc summary data=have nway;
class patient;
var out: ; /* any list of variables you want to sum*/
output out=want sum=; /* the option sum= this way means that the result data set will have the same names, use /autoname to have them named Out1_sum Out2_sum etc. */
run;
If a report something like this:
Proc tabulate data=have;
class patient;
var out: ; /* again list of variables*/
table patient,
(out: )*sum=;
run;
Repeat the variables from the VAR statement to inside the ()
Thank you ballardw for your help, much appreciated.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.