<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Inverse probability weight to account for loss to follow-up on cohort study in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775892#M37992</link>
    <description>&lt;P&gt;I might suggest considering a few small changes to your analysis. One concern discussed in this&amp;nbsp;&lt;A href="https://support.sas.com/kb/22/600.html" target="_self"&gt;SAS Note&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;is that:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"In some modeling procedures such as PROC LOGISTIC and PROC GENMOD, arbitrarily inflating the values of a FREQ or WEIGHT variable (for instance, multiplying them by a constant) drives all effects toward significance."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That note mentions normalizing weights as one typical approach for avoiding this issue. What I might suggest in your case since these are inverse probability weights, is to add an ID variable (if one doesn't already exist) and refit the model with a REPEATED statement with the ID variable listed as the SUBJECT= effect. &lt;/SPAN&gt;&lt;SPAN&gt;The REPEATED statement is typically used to request a&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_genmod_details29.htm" target="_self"&gt;GEE model fit&lt;/A&gt;&amp;nbsp;for clustered data or repeated&amp;nbsp;measures. The reason I recommend it here even though you only have one observation per subject is that by default for GEE models the procedure will report standard errors and confidence limits based on the empirical/robust/sandwich covariance matrix estimate.&amp;nbsp; This estimate is not influence by rescaling weights the same way the MLE based estimate from a generalized linear model would be. Moreover, for IPW models, the empirical covariance matrix is known to lead to conservative (but appropriate) inference if the weights are treated as fixed and known values (what PROC GENMOD would do) even when they were estimated from the data. For that reason, if decide to take this approach I'd also suggest replacing the LRCI option in the MODEL statement with the WALD option to request the use of the Wald statistic for the Type 3 test that is requested.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 22 Oct 2021 15:20:34 GMT</pubDate>
    <dc:creator>MichaelL_SAS</dc:creator>
    <dc:date>2021-10-22T15:20:34Z</dc:date>
    <item>
      <title>Inverse probability weight to account for loss to follow-up on cohort study</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775624#M37983</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;I am trying to calculate stabilised inverse probability weights to account for missing related to loss-to-follow up in my cohort study. I calculated this and it had a mean value of 1. Then I repeated the analysis using the calculated weight (ipw) as can be seen in the following proc genmod.&lt;/P&gt;&lt;P&gt;My question is that is the weight statement put correctly in proc genmod below? I am obating the output and the results seem meaningful, however, I want to hear from experts in SAS. Thank you in advance for your time and support.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Proc genmod descending data =data;&lt;BR /&gt;class covariates;&lt;BR /&gt;model chol_status30=covariates /dist = binomial link=log lrci type3;&lt;BR /&gt;Covariate1/exp;&lt;/P&gt;&lt;P&gt;Covariate2/exp;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;BR /&gt;weight ipw;&lt;BR /&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Oct 2021 12:07:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775624#M37983</guid>
      <dc:creator>Kunko</dc:creator>
      <dc:date>2021-10-21T12:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse probability weight to account for loss to follow-up on cohort study</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775892#M37992</link>
      <description>&lt;P&gt;I might suggest considering a few small changes to your analysis. One concern discussed in this&amp;nbsp;&lt;A href="https://support.sas.com/kb/22/600.html" target="_self"&gt;SAS Note&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;is that:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"In some modeling procedures such as PROC LOGISTIC and PROC GENMOD, arbitrarily inflating the values of a FREQ or WEIGHT variable (for instance, multiplying them by a constant) drives all effects toward significance."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;That note mentions normalizing weights as one typical approach for avoiding this issue. What I might suggest in your case since these are inverse probability weights, is to add an ID variable (if one doesn't already exist) and refit the model with a REPEATED statement with the ID variable listed as the SUBJECT= effect. &lt;/SPAN&gt;&lt;SPAN&gt;The REPEATED statement is typically used to request a&amp;nbsp;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_genmod_details29.htm" target="_self"&gt;GEE model fit&lt;/A&gt;&amp;nbsp;for clustered data or repeated&amp;nbsp;measures. The reason I recommend it here even though you only have one observation per subject is that by default for GEE models the procedure will report standard errors and confidence limits based on the empirical/robust/sandwich covariance matrix estimate.&amp;nbsp; This estimate is not influence by rescaling weights the same way the MLE based estimate from a generalized linear model would be. Moreover, for IPW models, the empirical covariance matrix is known to lead to conservative (but appropriate) inference if the weights are treated as fixed and known values (what PROC GENMOD would do) even when they were estimated from the data. For that reason, if decide to take this approach I'd also suggest replacing the LRCI option in the MODEL statement with the WALD option to request the use of the Wald statistic for the Type 3 test that is requested.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Oct 2021 15:20:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775892#M37992</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2021-10-22T15:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse probability weight to account for loss to follow-up on cohort study</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775993#M38003</link>
      <description>Hi Michael,&lt;BR /&gt;Thank you so much for your suggestion and reasoning.&lt;BR /&gt;I checked both way using REPEATED statement with listing ID in Subject=effect as well as in CLASS statement.&lt;BR /&gt;I got very similar results with only small differences in some estimates and 95% CI.&lt;BR /&gt;With REPEATED statement:&lt;BR /&gt;RR=1.71 (95% CI=1.16, 2.53);&lt;BR /&gt;Without REPEATED statement:&lt;BR /&gt;RR=1.77 (95% CI=1.18, 2.65);&lt;BR /&gt;As can be observed using REPEATED statement gave more precise estimate and I wanted to use this in my paper. Would please let me know a citable article explaining this issue so that I will include in the paper to provide readers with the evidence.&lt;BR /&gt;&lt;BR /&gt;Thank you so much again.&lt;BR /&gt;Tol</description>
      <pubDate>Sat, 23 Oct 2021 02:31:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/775993#M38003</guid>
      <dc:creator>Kunko</dc:creator>
      <dc:date>2021-10-23T02:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse probability weight to account for loss to follow-up on cohort study</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/776041#M38008</link>
      <description>&lt;P&gt;A few references that touch on this point are provided at the end of the &lt;A href="https://go.documentation.sas.com/doc/en/statug/15.2/statug_gee_details10.htm#statug.gee.wgeealgorithm" target="_self"&gt;"Fitting Algorithm for Weighted GEE"&lt;/A&gt;&amp;nbsp;section of the PROC GEE documentation (it supports weighted GEEs for missing data due to drop outs in longitudinal studies). I don't have the book with me now, but looking at the &lt;A href="https://content.sph.harvard.edu/fitzmaur/ala2e/" target="_self"&gt;TOC for Fitzmaurice, Laird, and Ware 2011&lt;/A&gt;, I think section 18.5 might have the relevant discussion.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Oct 2021 17:38:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/776041#M38008</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2021-10-23T17:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse probability weight to account for loss to follow-up on cohort study</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/839556#M41594</link>
      <description>&lt;P&gt;I recently learned that the weight statement in proc logistic actually uses frequency weight, meaning a weight of 2 is equivalent to 2 independent observations in the analysis. I found it very bizarre. A regular generalized linear model does not deal with weights this way. It would treat the weight of 2 as a weight of 2 in the estimating equation instead of 2 independent observations. The glm() in R does so. When you use repeated statement with id variable in proc genmod, you would nullify this independent observation thing, and this makes a difference.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wonder in which scenario the frequency weight is useful for making inference.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you clarify?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Oct 2022 01:32:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Inverse-probability-weight-to-account-for-loss-to-follow-up-on/m-p/839556#M41594</guid>
      <dc:creator>jiweihe1223</dc:creator>
      <dc:date>2022-10-20T01:32:27Z</dc:date>
    </item>
  </channel>
</rss>

