Hi,
I have used the following code to get mean and std. I am getting results separately in 5 different tables for each group. How can I get the results in one summary table?
proc means data=triangle mean std;
var y;
by trt;
output out=pred2 mean= std= /autoname;
run;
I want results like the following. Please help