Hi folks,
Can anybody shed some insight on the procedure to use for calculating the variance of a weighted sum? Basically what I'm looking for is SAS 9.3 code to calculate var(z) in the following equation:
var(z) = a^2[var(x)] + b^2[var(y)]
a&b are the weights, x&y are the variables for which variance is to be calculated. More information can be provided if necessary.
Thanks in advance for considering.
proc means , proc summary ,proc univariate ........... can do it.
proc means data=sashelp.class nway noprint; class sex; var height; weight age; output out=want var=height_weight_var ; run;
Ksharp
To use two different weights you will need to make a pass through means for each weight variable.
Then combine the two resulting data sets to calculate your var( Z).
Ou. Sorry ! I misunderstood what op mean. I even don't notice there are two variables being the weight.
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.