<?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 How to deal with extreme propensity scores after IPTW in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-deal-with-extreme-propensity-scores-after-IPTW/m-p/915468#M83308</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to run a propensity score analysis using proc psmatch and IPTW stabilized weights.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I do this, there are a handful of observations with weighted propensity scores &amp;gt;1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't share my full dataset, but here is a brief example of the matched IPTW data I have with 2 key confounders, the propensity scores (_PS_) and weighted propensity scores (PS_Weight)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Matched_IPTW;
input ID AGE TREAT CFD1 CFD2 _PS_ PS_WEIGHT;
DATALINES;
1 83 1 1 2 0.95419 0.4235
2 69 1 1 2 0.94767 0.4264
3 71 1 1 0 0.06560 6.1600
4 83 1 1 1 0.05468 7.3904
5 71 1 1 1 0.04666 8.6598
6 76 0 1 1 0.93772 9.5675
7 70 1 1 0 0.04194 9.6356
8 69 0 1 2 0.95491 13.2150
9 76 1 0 1 0.02980 13.5610
10 68 1 0 0 0.01467 27.5379
;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CFD1 is a binary confounder (1,0; yes/no), CFD2 is a categorical confounder (0,1,2; none/mild/moderate), _PS_ is the propensity score and PS_Weight is the stabilized PS generated from IPTW using SAS Proc psmatch and requesting WEIGHT=ATEWGT(STABILIZE=YES) in the assess statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the SAS psmatch documentation, I can't find how to address extreme PS values that have been weighted - I have read that you can trim or truncate such values, but I don't know how to request this; or what method I should use to address this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be really appreciated, please let me know if anything above is unclear etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
    <pubDate>Sun, 11 Feb 2024 21:13:58 GMT</pubDate>
    <dc:creator>Epi_Stats</dc:creator>
    <dc:date>2024-02-11T21:13:58Z</dc:date>
    <item>
      <title>How to deal with extreme propensity scores after IPTW</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-deal-with-extreme-propensity-scores-after-IPTW/m-p/915468#M83308</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to run a propensity score analysis using proc psmatch and IPTW stabilized weights.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I do this, there are a handful of observations with weighted propensity scores &amp;gt;1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can't share my full dataset, but here is a brief example of the matched IPTW data I have with 2 key confounders, the propensity scores (_PS_) and weighted propensity scores (PS_Weight)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data Matched_IPTW;
input ID AGE TREAT CFD1 CFD2 _PS_ PS_WEIGHT;
DATALINES;
1 83 1 1 2 0.95419 0.4235
2 69 1 1 2 0.94767 0.4264
3 71 1 1 0 0.06560 6.1600
4 83 1 1 1 0.05468 7.3904
5 71 1 1 1 0.04666 8.6598
6 76 0 1 1 0.93772 9.5675
7 70 1 1 0 0.04194 9.6356
8 69 0 1 2 0.95491 13.2150
9 76 1 0 1 0.02980 13.5610
10 68 1 0 0 0.01467 27.5379
;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;CFD1 is a binary confounder (1,0; yes/no), CFD2 is a categorical confounder (0,1,2; none/mild/moderate), _PS_ is the propensity score and PS_Weight is the stabilized PS generated from IPTW using SAS Proc psmatch and requesting WEIGHT=ATEWGT(STABILIZE=YES) in the assess statement.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the SAS psmatch documentation, I can't find how to address extreme PS values that have been weighted - I have read that you can trim or truncate such values, but I don't know how to request this; or what method I should use to address this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be really appreciated, please let me know if anything above is unclear etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance&lt;/P&gt;</description>
      <pubDate>Sun, 11 Feb 2024 21:13:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-deal-with-extreme-propensity-scores-after-IPTW/m-p/915468#M83308</guid>
      <dc:creator>Epi_Stats</dc:creator>
      <dc:date>2024-02-11T21:13:58Z</dc:date>
    </item>
  </channel>
</rss>

