I am able to print out the output with proc means, but how should I do by printing the same as the sample output as provided? The questions is : Find out the mean maxpulse rate and mean weight for both female and male individuals in the fitness file. Use either concat, merge or combine of multiple data sets if necessary The sample output: The Dataset is like: I have tried: data work.mxpulseweight; set orion.Fitness; run; proc means data=work.mxpulseweight; class sex; var weight maxpulse; output out=mxpulseweight mean=mean; run; and I am able to get the output: How should I do in order to get the same format as the sample output provide?
... View more