Discussion:
Proc means
(too old to reply)
Al
2011-01-25 18:43:26 UTC
Permalink
ALL;

How can i find standard error of mean (SEM ) using proc means

Thanks
Al
Reeza
2011-01-25 18:53:08 UTC
Permalink
Post by Al
ALL;
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;
Adie
2011-01-26 21:21:39 UTC
Permalink
Post by Al
ALL;
How can i find standard error of mean (SEM ) using proc means
its not one of the standard statistics and is often calculated outside
but this should help.

http://www.stattutorials.com/SAS/TUTORIAL-PROC-MEANS.htm
data _null_;
2011-01-28 12:51:52 UTC
Permalink
The statistic you seek is called STDERR in SAS. It is computed by MEANS/SUMMARY and others. Did you even look at the documentation?
Loading...