Hi I currently have a data set where I am trying to get the proc means for all numeric variables - n, mean, median, std, min, max, and confidence intervals
Here is the code I wrote:
proc means data=test n mean lclm uclm alpha=0.05 median min max missing ;
output out=test_stat;
by group;
var
time1 time2 time3 time4;
run;
The code works in the result viewer but when i look at test_stat (it has not included upper and lower confidence intervals)
Any help would be great!
Thanks