Hello,
I need to use stabilized IP weights for my analysis because of the large weights I get when I use the regular IPW (due to large variance). I calculated the regular IPW using the following code:
*Calculating probability of participation/no drop out given covariates;
proc logistic data=ipw ;
class gender race income education smoking BMIcat ;
model responder = gender race income education smoking BMIcat;
output out=weights predicted=prob;
run;
*Computing inverse weights;
data inverseweights;
set weights;
if responder=1 then ipw = 1/prob;
if responder=0 then ipw=1/(1-prob); run;
*Merging dataset containing inverse weights with full dataset;
data weight.ipwanalysis;
merge inverseweights fulldataset (in=a);
if a; by id; run;
*Final Adjusted model weighted by IPW;
proc glm data=ipwanalysis ;
class bmicat race;
model FinalScore=bmicat race age;
weight ipw;
lsmeans bmicat/ stderr pdiff cl; run; quit;
How can I calculate and use Stabilized Inverse Probability Weights (instead of regular IPW) so that I can weight the mean differences I get from my final adjusted model (proc glm). I appreciate any help you can offer
Try replacing your second step with:
proc sql;
create table marginalWeights as
select
sum(responder) / count(responder) as marginalWeight
from weights;
create table inverseWeights as
select
*,
case responder
when 1 then marginalWeight / prob
when 0 then (1 - marginalWeight) / (1-prob)
else .
end as ipw
from weights, marginalWeights
order by id;
quit;
(untested)
Try replacing your second step with:
proc sql;
create table marginalWeights as
select
sum(responder) / count(responder) as marginalWeight
from weights;
create table inverseWeights as
select
*,
case responder
when 1 then marginalWeight / prob
when 0 then (1 - marginalWeight) / (1-prob)
else .
end as ipw
from weights, marginalWeights
order by id;
quit;
(untested)
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.
Find more tutorials on the SAS Users YouTube channel.