Post by AlALL;
How can i find standard error of mean (SEM ) using proc means
Thanks
Al
How is that different than Standard Deviation? Proc Means generates
that automatically.
*in output window;
proc means data=sashelp.class;
var age;
run;
*in a dataset;
proc means data=sashelp.class noprint;
var age;
output out=want (drop = _type_ _freq_) mean(age)=avg_age
std(age)=std_age;
run;