<?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 weight statement in proc lifetest in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850174#M42091</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Under weight statement, what kind of weight can be put in ?&lt;/P&gt;
&lt;P&gt;Dose the weight only allow IPW(&lt;SPAN&gt;inverse probability of treatment weights)&lt;/SPAN&gt; or any kind of weight from the weighting method such as entropy balance, propensity score matching ?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="xisDoc-code"&gt;proc lifetest data=VALung ;
   time SurvTime*Censor(1);
   strata Cell;
  &lt;U&gt;&lt;FONT color="#000080"&gt; weight ???? &lt;/FONT&gt; &lt;/U&gt;;
run;&lt;/PRE&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Dec 2022 23:09:09 GMT</pubDate>
    <dc:creator>Ivy</dc:creator>
    <dc:date>2022-12-16T23:09:09Z</dc:date>
    <item>
      <title>weight statement in proc lifetest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850174#M42091</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Under weight statement, what kind of weight can be put in ?&lt;/P&gt;
&lt;P&gt;Dose the weight only allow IPW(&lt;SPAN&gt;inverse probability of treatment weights)&lt;/SPAN&gt; or any kind of weight from the weighting method such as entropy balance, propensity score matching ?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="xisDoc-code"&gt;proc lifetest data=VALung ;
   time SurvTime*Censor(1);
   strata Cell;
  &lt;U&gt;&lt;FONT color="#000080"&gt; weight ???? &lt;/FONT&gt; &lt;/U&gt;;
run;&lt;/PRE&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Dec 2022 23:09:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850174#M42091</guid>
      <dc:creator>Ivy</dc:creator>
      <dc:date>2022-12-16T23:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: weight statement in proc lifetest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850175#M42092</link>
      <description>&lt;P&gt;From the documentation of the Weight statement for Proc Lifetest:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;DIV class="xis-refProc"&gt;
&lt;DIV id="statug.lifetest.lifetestweight" class="AAsection"&gt;
&lt;P&gt;The implementation of weights in PROC LIFETEST is based on Xie and Liu (&lt;A href="http://127.0.0.1:54027/help/statug.hlp/statug_lifetest_references.htm#statug_lifetestxie_j05" target="_blank"&gt;2005&lt;/A&gt;, &lt;A href="http://127.0.0.1:54027/help/statug.hlp/statug_lifetest_references.htm#statug_lifetestxie_j11" target="_blank"&gt;2011&lt;/A&gt;), who use inverse probability of treatment weights to reduce confounding effects. A weight is assigned to each subject as the inverse probability of being in a certain group. If a subject has a higher probability of being in a group, it is considered as overrepresented and is therefore assigned a lower weight; on the other hand, if the subject has a smaller probability of being in a group, it is considered as underrepresented and is assigned a higher weight.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;So it appears that only IPW is expected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/70526"&gt;@Ivy&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Under weight statement, what kind of weight can be put in ?&lt;/P&gt;
&lt;P&gt;Dose the weight only allow IPW(&lt;SPAN&gt;inverse probability of treatment weights)&lt;/SPAN&gt; or any kind of weight from the weighting method such as entropy balance, propensity score matching ?&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_lifetest_syntax08.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE class="xisDoc-code"&gt;proc lifetest data=VALung ;
   time SurvTime*Censor(1);
   strata Cell;
  &lt;U&gt;&lt;FONT color="#000080"&gt; weight ???? &lt;/FONT&gt; &lt;/U&gt;;
run;&lt;/PRE&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Dec 2022 03:11:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850175#M42092</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2022-12-17T03:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: weight statement in proc lifetest</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850319#M42096</link>
      <description>I think IPW weights are common but you should be able to use any WEIGHT value you desire.   Note that the WEIGHT stmt only applies to Method=KM.&lt;BR /&gt;</description>
      <pubDate>Mon, 19 Dec 2022 09:26:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/weight-statement-in-proc-lifetest/m-p/850319#M42096</guid>
      <dc:creator>OsoGris</dc:creator>
      <dc:date>2022-12-19T09:26:55Z</dc:date>
    </item>
  </channel>
</rss>

