BookmarkSubscribeRSS Feed
sas_new_user
Calcite | Level 5

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.

3 REPLIES 3
Ksharp
Super User

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

ballardw
Super User

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).

Ksharp
Super User

Ou. Sorry ! I misunderstood what op mean. I even don't notice there are two variables being the weight.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2475 views
  • 0 likes
  • 3 in conversation