<?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 Fuzzy Propensity Score Matching in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Fuzzy-Propensity-Score-Matching/m-p/699835#M33760</link>
    <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm hoping to create code that will conduct propensity score matching on principal components I've created in a PCA. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data set is census data, where we created principal components on zip codes to understand underlying constructs of different zip codes throughout the state. I've flagged intervention zip codes where we have interventions being implemented, and the rest of the zip codes are controls. I've created propensity scores using PROC LOGISTIC.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm trying now to use fuzzy matching to match propensity scores for intervention zips to control zips on a 1:2 ratio.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;CODE:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Proc Factor data= (data set)&lt;BR /&gt;out= work.pc_zip&lt;BR /&gt;nfact=11&lt;BR /&gt;simple&lt;BR /&gt;method=prin&lt;BR /&gt;priors=one&lt;BR /&gt;mineigen= 0.99&lt;BR /&gt;scree&lt;BR /&gt;rotate=varimax&lt;BR /&gt;round&lt;BR /&gt;flag=.40 ;&lt;BR /&gt;var (variables)&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*flagging intervention zips;&amp;nbsp;&lt;BR /&gt;data work.pca_flag;&lt;BR /&gt;set work.pc_zip;&lt;BR /&gt;if zcat5 in (&lt;EM&gt;intervention zip codes&lt;/EM&gt;) then interven=1; else interven=0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;*creating propensity scores;&lt;BR /&gt;proc logistic data=work.pca_flag descending;&lt;BR /&gt;model interven = factor1 factor2 factor3 factor4 factor5 factor6 factor7 factor8 factor9 factor10;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 18 Nov 2020 15:34:54 GMT</pubDate>
    <dc:creator>RebeccaB_</dc:creator>
    <dc:date>2020-11-18T15:34:54Z</dc:date>
    <item>
      <title>Fuzzy Propensity Score Matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fuzzy-Propensity-Score-Matching/m-p/699835#M33760</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm hoping to create code that will conduct propensity score matching on principal components I've created in a PCA. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data set is census data, where we created principal components on zip codes to understand underlying constructs of different zip codes throughout the state. I've flagged intervention zip codes where we have interventions being implemented, and the rest of the zip codes are controls. I've created propensity scores using PROC LOGISTIC.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I'm trying now to use fuzzy matching to match propensity scores for intervention zips to control zips on a 1:2 ratio.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;CODE:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;Proc Factor data= (data set)&lt;BR /&gt;out= work.pc_zip&lt;BR /&gt;nfact=11&lt;BR /&gt;simple&lt;BR /&gt;method=prin&lt;BR /&gt;priors=one&lt;BR /&gt;mineigen= 0.99&lt;BR /&gt;scree&lt;BR /&gt;rotate=varimax&lt;BR /&gt;round&lt;BR /&gt;flag=.40 ;&lt;BR /&gt;var (variables)&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*flagging intervention zips;&amp;nbsp;&lt;BR /&gt;data work.pca_flag;&lt;BR /&gt;set work.pc_zip;&lt;BR /&gt;if zcat5 in (&lt;EM&gt;intervention zip codes&lt;/EM&gt;) then interven=1; else interven=0;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;*creating propensity scores;&lt;BR /&gt;proc logistic data=work.pca_flag descending;&lt;BR /&gt;model interven = factor1 factor2 factor3 factor4 factor5 factor6 factor7 factor8 factor9 factor10;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 15:34:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fuzzy-Propensity-Score-Matching/m-p/699835#M33760</guid>
      <dc:creator>RebeccaB_</dc:creator>
      <dc:date>2020-11-18T15:34:54Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy Propensity Score Matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Fuzzy-Propensity-Score-Matching/m-p/699866#M33763</link>
      <description>&lt;P&gt;Have you considered using PROC PSMATCH instead?&lt;/P&gt;
&lt;P&gt;Example: Matching with precomputed propensity scores&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_psmatch_examples08.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_psmatch_examples08.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherwise, there's a couple of matching macro's here, GMATCH and VMATCH:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://bioinformaticstools.mayo.edu/?category=20" target="_blank"&gt;http://bioinformaticstools.mayo.edu/?category=20&lt;/A&gt;&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/356491"&gt;@RebeccaB_&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I'm hoping to create code that will conduct propensity score matching on principal components I've created in a PCA. &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The data set is census data, where we created principal components on zip codes to understand underlying constructs of different zip codes throughout the state. I've flagged intervention zip codes where we have interventions being implemented, and the rest of the zip codes are controls. I've created propensity scores using PROC LOGISTIC.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;I'm trying now to use fuzzy matching to match propensity scores for intervention zips to control zips on a 1:2 ratio.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#FF0000"&gt;CODE:&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Proc Factor data= (data set)&lt;BR /&gt;out= work.pc_zip&lt;BR /&gt;nfact=11&lt;BR /&gt;simple&lt;BR /&gt;method=prin&lt;BR /&gt;priors=one&lt;BR /&gt;mineigen= 0.99&lt;BR /&gt;scree&lt;BR /&gt;rotate=varimax&lt;BR /&gt;round&lt;BR /&gt;flag=.40 ;&lt;BR /&gt;var (variables)&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*flagging intervention zips;&amp;nbsp;&lt;BR /&gt;data work.pca_flag;&lt;BR /&gt;set work.pc_zip;&lt;BR /&gt;if zcat5 in (&lt;EM&gt;intervention zip codes&lt;/EM&gt;) then interven=1; else interven=0;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;*creating propensity scores;&lt;BR /&gt;proc logistic data=work.pca_flag descending;&lt;BR /&gt;model interven = factor1 factor2 factor3 factor4 factor5 factor6 factor7 factor8 factor9 factor10;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Nov 2020 16:15:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Fuzzy-Propensity-Score-Matching/m-p/699866#M33763</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2020-11-18T16:15:03Z</dc:date>
    </item>
  </channel>
</rss>

