I have averages of proportions and the standard deviation for each average.
Which SAS procedure calculates the average (of all the proportions) using the standard deviations as weights?
Thank you.
Virtually any procedure in SAS that can calculate a mean can also calculate a weighted mean. Why not start with the obvious one, PROC MEANS. Just add a weight statement. You probably should weight by the INVERSE of the variance, not the standard deviation. Get the weight variable in a data step first.
proc means data=a;
weight wt;
var y;
run;
The 2025 SAS Hackathon Kicks Off on June 11!
Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.