<?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 propensity scoring with 4 levels of treatment exposure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/propensity-scoring-with-4-levels-of-treatment-exposure/m-p/802818#M39454</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I am unsure how to accomplish propensity score matching when there is a control group (0) and 3 levels of exposure (1,2,3). I have attempted to develop 3 different data sets comparing 0-1, 0-2, 0-3. The first dataset produces a new table with the expected number of observations. However, the second and third do not produce a matched dataset (see attached excel file). Not sure what the issues is?&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;/*propensity matching CMT 0 vs 1*/
proc psmatch data=SMTgroup01;
class CMT_group Gender;
psmodel CMT_group(Treated="1")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore01 matchid=_MatchID;
run;

/*propensity matching CMT 0 vs 2*/
proc psmatch data=SMTgroup02;
class CMT_group Gender;
psmodel CMT_group(Treated="2")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore02 matchid=_MatchID;
run;

/*propensity matching CMT 0 vs 3*/
proc psmatch data=SMTgroup03;
class CMT_group Gender;
psmodel CMT_group(Treated="3")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore03 matchid=_MatchID;
run;&lt;/PRE&gt;</description>
    <pubDate>Fri, 18 Mar 2022 14:56:03 GMT</pubDate>
    <dc:creator>niugrads1999</dc:creator>
    <dc:date>2022-03-18T14:56:03Z</dc:date>
    <item>
      <title>propensity scoring with 4 levels of treatment exposure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/propensity-scoring-with-4-levels-of-treatment-exposure/m-p/802818#M39454</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I am unsure how to accomplish propensity score matching when there is a control group (0) and 3 levels of exposure (1,2,3). I have attempted to develop 3 different data sets comparing 0-1, 0-2, 0-3. The first dataset produces a new table with the expected number of observations. However, the second and third do not produce a matched dataset (see attached excel file). Not sure what the issues is?&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;/*propensity matching CMT 0 vs 1*/
proc psmatch data=SMTgroup01;
class CMT_group Gender;
psmodel CMT_group(Treated="1")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore01 matchid=_MatchID;
run;

/*propensity matching CMT 0 vs 2*/
proc psmatch data=SMTgroup02;
class CMT_group Gender;
psmodel CMT_group(Treated="2")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore02 matchid=_MatchID;
run;

/*propensity matching CMT 0 vs 3*/
proc psmatch data=SMTgroup03;
class CMT_group Gender;
psmodel CMT_group(Treated="3")=claim_count allowed gender age R_Risk;
match method=optimal(k=1) stat=lps exact=gender caliper=0.25;
output out(obs=match)=propscore03 matchid=_MatchID;
run;&lt;/PRE&gt;</description>
      <pubDate>Fri, 18 Mar 2022 14:56:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/propensity-scoring-with-4-levels-of-treatment-exposure/m-p/802818#M39454</guid>
      <dc:creator>niugrads1999</dc:creator>
      <dc:date>2022-03-18T14:56:03Z</dc:date>
    </item>
  </channel>
</rss>

