<?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 Re: Analyses after proprensity score matching in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/244178#M12883</link>
    <description>&lt;P&gt;Yes, I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham﻿&lt;/a&gt;'s suggestion. It will work even when there are many strata.&lt;/P&gt;&lt;P&gt;Only thing is that it is a very strong assumption that the contributions from the strata are normal distributed. Its likely very skew, with some few strata with very high values.&lt;/P&gt;</description>
    <pubDate>Mon, 18 Jan 2016 09:03:14 GMT</pubDate>
    <dc:creator>JacobSimonsen</dc:creator>
    <dc:date>2016-01-18T09:03:14Z</dc:date>
    <item>
      <title>Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/242876#M12786</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am a beginner in the use of Propensity Score (PS) and I have several question regarding analysis to perform on PS matched sample. I have performed a matching using PS and I have now my matched sample (I have checked the distribution of my covariates). My outcomes of interest are either continuous or categorical variables. I have read that a simple way of doing is to perform proc ttest (paired) for continuous variable others argue that for binary variable a conditional logistic regression is needed (using strata in proc logistic). In that case do I need to include in my model PS as a variable of adjustment or am I zm getting all wrong? I used the SAS macro %&lt;STRONG&gt;psmulti_patch&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Is this macro using "optimal matching" method ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thak you very much in advance,&lt;/P&gt;</description>
      <pubDate>Tue, 12 Jan 2016 09:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/242876#M12786</guid>
      <dc:creator>Jub</dc:creator>
      <dc:date>2016-01-12T09:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243464#M12833</link>
      <description>&lt;P&gt;If you have binary outcome, then I will aggree that stratified logistic regressino is a good apprach.&lt;/P&gt;&lt;P&gt;Lets say you have a variable STRATA which define the groups from your matching.&lt;/P&gt;&lt;P&gt;Then you can make the analysis by proc logistic&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc logistic data=mydata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class exposure;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model outcome(event='1')=exposure;&lt;/P&gt;&lt;P&gt;&amp;nbsp; strata STRATA;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or you, in case you dont want to adjust for any other variables, then you can also use the simpler mantel haenzel statistics;&lt;/P&gt;&lt;P&gt;proc freq data=mydata;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; table STRATA*outcome*exposure/cmh noprint;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;which should give almost same OR estimate as the conditional logistic regression.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2016 13:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243464#M12833</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2016-01-14T13:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243713#M12846</link>
      <description>&lt;P&gt;Thank you very much for your quick reply !&lt;/P&gt;&lt;P&gt;In the option strata i put the variable the group of each match?&lt;/P&gt;&lt;P&gt;For continous variables, what should I use in case I want to adjust for other variables?&lt;/P&gt;&lt;P&gt;Many thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 09:35:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243713#M12846</guid>
      <dc:creator>Jub</dc:creator>
      <dc:date>2016-01-15T09:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243725#M12847</link>
      <description>&lt;P&gt;Yes, the STRATA variable is the one determing the groups defined by your matchning.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have contionous variable and only few matching-groups, then you can adjust for the strata variable&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glm data=mydata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class exposure someothervariable strata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model outcome=&amp;nbsp;exposure someothervariable strata;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;genmod or mixed also be used. But, this will not work if there is too many groups (&amp;gt;1000 or that order)&amp;nbsp;because each group will contribute with a parameter. I dont think there is any procedure that can&amp;nbsp;treat the matching variable in a&amp;nbsp;semiparametric way except of&amp;nbsp;PROC TTEST which doesnt allow&amp;nbsp;for other adjustment. I would like to hear if any others know of a solution.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, if your matchning is very balanced&amp;nbsp;(same number of controls to each exposed), then you can argue that you dont need to include the strata variable in the model. That is so because&amp;nbsp;the strata variable is not a confounder due to the design and your estimate of your parameter of interest will be unaffected whether you include strata or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc glm data=mydata;&lt;/P&gt;&lt;P&gt;&amp;nbsp; class exposure someothervariable ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; model outcome=&amp;nbsp;exposure someothervariable ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 10:53:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243725#M12847</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2016-01-15T10:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243884#M12866</link>
      <description>&lt;P&gt;For the sake of this post, let's consider the variable 'strata' to be the collective of matched subjects on the propensity score. &amp;nbsp;This allows for n:m matching as well as 1:1 pairing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following will allow you to analyze data, and is adapted from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10078"&gt;@JacobSimonsen﻿&lt;/a&gt;'s post.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc glimmix data=mydata;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; class exposure someothervariable strata;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; model outcome=&amp;nbsp;exposure someothervariable;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; random intercept/subject=strata;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This will allow you to handle the 1000's of strata situation. &amp;nbsp;It also will allow you to fit models with distributions other than those with residuals that are normally distributed (with appropriate options).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Steve Denham&lt;/P&gt;</description>
      <pubDate>Fri, 15 Jan 2016 19:06:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/243884#M12866</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2016-01-15T19:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: Analyses after proprensity score matching</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/244178#M12883</link>
      <description>&lt;P&gt;Yes, I agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15363"&gt;@SteveDenham﻿&lt;/a&gt;'s suggestion. It will work even when there are many strata.&lt;/P&gt;&lt;P&gt;Only thing is that it is a very strong assumption that the contributions from the strata are normal distributed. Its likely very skew, with some few strata with very high values.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Jan 2016 09:03:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Analyses-after-proprensity-score-matching/m-p/244178#M12883</guid>
      <dc:creator>JacobSimonsen</dc:creator>
      <dc:date>2016-01-18T09:03:14Z</dc:date>
    </item>
  </channel>
</rss>

