<?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 PROC PSMATCH - Optimal matching in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665691#M31721</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Error: A feasible optimal fixed ratio matching that has the specified parameters does not exist.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am trying to do propensity score matching using method = optimal and caliper=0.25, however, I keep getting an error saying "A feasible optimal fixed ratio matching that has the specified parameters does not exist". When I change use caliper=., it works fine.&lt;BR /&gt;&lt;BR /&gt;I had an understanding that if caliper value is unspecified, the default caliper of 0.25 is used. However, providing value of 0.25 in caliper explicitly gives me an error. Can I still say that Caliper=. means that the caliper value considered while matching is the default value of 0.25?&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jun 2020 04:20:49 GMT</pubDate>
    <dc:creator>KK_Mangla</dc:creator>
    <dc:date>2020-06-29T04:20:49Z</dc:date>
    <item>
      <title>PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665691#M31721</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Error: A feasible optimal fixed ratio matching that has the specified parameters does not exist.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I am trying to do propensity score matching using method = optimal and caliper=0.25, however, I keep getting an error saying "A feasible optimal fixed ratio matching that has the specified parameters does not exist". When I change use caliper=., it works fine.&lt;BR /&gt;&lt;BR /&gt;I had an understanding that if caliper value is unspecified, the default caliper of 0.25 is used. However, providing value of 0.25 in caliper explicitly gives me an error. Can I still say that Caliper=. means that the caliper value considered while matching is the default value of 0.25?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 04:20:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665691#M31721</guid>
      <dc:creator>KK_Mangla</dc:creator>
      <dc:date>2020-06-29T04:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665698#M31722</link>
      <description>&lt;P&gt;1) show the entire code you are using. Since we don't know any of the other options you might be using it would involve lots of guessing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2) and may be related to contents of your data, especially if you specify lots of constraints compared to the number of records available.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 05:20:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665698#M31722</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-06-29T05:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665700#M31723</link>
      <description>Below is the code I am using. Note that the prop_score is calculated separately using PROC LOGISTIC and i have tried both OPTIMAL and VARRATIO method&lt;BR /&gt;&lt;BR /&gt;Title 'PSM using score difference';&lt;BR /&gt;proc psmatch data=work.&amp;amp;data_set. region=cs;&lt;BR /&gt;class &amp;amp;cat_var.;&lt;BR /&gt;psdata treatvar = case_cntrl_fl(Treated='1') PS=prop_score;&lt;BR /&gt;match method=varratio(kmax=1) exact=(&amp;amp;exact_var.) stat=ps caliper(mult=stddev)=0.25;&lt;BR /&gt;assess lps ps var=(prop_score sex &amp;amp;var_list.) / plots = (boxplot);&lt;BR /&gt;output out(obs=match)=WORK.psm ps=ps lps=lps matchid=_MatchID matchwgt = _MATCHWGT_;&lt;BR /&gt;run;&lt;BR /&gt;</description>
      <pubDate>Mon, 29 Jun 2020 05:31:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665700#M31723</guid>
      <dc:creator>KK_Mangla</dc:creator>
      <dc:date>2020-06-29T05:31:43Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665782#M31727</link>
      <description>&lt;P&gt;As described in the &lt;A href="https://go.documentation.sas.com/?docsetId=statug&amp;amp;docsetTarget=statug_psmatch_syntax08.htm&amp;amp;docsetVersion=15.1&amp;amp;locale=en#statug.psmatch.caliperopt" target="_self"&gt;CALIPER=&lt;/A&gt; syntax section of the PROC PSMATCH documentation, specifying "CALIPER=." requests no caliper constraint be applied to the matching problem. Specifying CALIPER=. is different then not specifying the CALIPER= option, in which case you are correct CALIPER=0.25 would be used as the default.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 13:59:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665782#M31727</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2020-06-29T13:59:05Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665789#M31728</link>
      <description>Thank you so much!</description>
      <pubDate>Mon, 29 Jun 2020 13:58:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665789#M31728</guid>
      <dc:creator>KK_Mangla</dc:creator>
      <dc:date>2020-06-29T13:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: PROC PSMATCH - Optimal matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665790#M31729</link>
      <description>&lt;P&gt;Glad to help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jun 2020 13:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-PSMATCH-Optimal-matching/m-p/665790#M31729</guid>
      <dc:creator>MichaelL_SAS</dc:creator>
      <dc:date>2020-06-29T13:59:26Z</dc:date>
    </item>
  </channel>
</rss>

