<?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 Observational Study and controlling variables in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673822#M32243</link>
    <description>&lt;P&gt;Hello SAS Community, I am working on an observational study to determine the impact of a program. My approach is to compare the results of the treatment group to a control group. I thought this would be a good approach because I could control for possible confounding variables by using a one to one match on these variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After presenting some initial results most of the feedback has been additional variables that should have been controlled for. Is there a way to control for additional variables using the existing control/treatment populations and save my analysis? Or do I just keep collecting more data and constructing new control populations?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, if I constructed a control group to compare to the treatment group but failed to control for height of an individual and my populations are not balanced on this variable, is there a way to analyze the data control for height? Such that I can reliably extract the impact of the program?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been learning as I go on this project and I suspect this might be a simple/silly question for more experienced statisticians. I am asking in general to figure out what techniques or procedures I need to learn more about.&lt;/P&gt;</description>
    <pubDate>Fri, 31 Jul 2020 19:42:21 GMT</pubDate>
    <dc:creator>supp</dc:creator>
    <dc:date>2020-07-31T19:42:21Z</dc:date>
    <item>
      <title>Observational Study and controlling variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673822#M32243</link>
      <description>&lt;P&gt;Hello SAS Community, I am working on an observational study to determine the impact of a program. My approach is to compare the results of the treatment group to a control group. I thought this would be a good approach because I could control for possible confounding variables by using a one to one match on these variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After presenting some initial results most of the feedback has been additional variables that should have been controlled for. Is there a way to control for additional variables using the existing control/treatment populations and save my analysis? Or do I just keep collecting more data and constructing new control populations?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, if I constructed a control group to compare to the treatment group but failed to control for height of an individual and my populations are not balanced on this variable, is there a way to analyze the data control for height? Such that I can reliably extract the impact of the program?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been learning as I go on this project and I suspect this might be a simple/silly question for more experienced statisticians. I am asking in general to figure out what techniques or procedures I need to learn more about.&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 19:42:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673822#M32243</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2020-07-31T19:42:21Z</dc:date>
    </item>
    <item>
      <title>Re: Observational Study and controlling variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673837#M32244</link>
      <description>&lt;P&gt;I think you should consider using proc PSMATCH for this task.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=14.3&amp;amp;docsetTarget=statug_psmatch_overview.htm&amp;amp;locale=en" target="_self"&gt;https://documentation.sas.com/?docsetId=statug&amp;amp;docsetVersion=14.3&amp;amp;docsetTarget=statug_psmatch_overview.htm&amp;amp;locale=en&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 21:29:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673837#M32244</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-07-31T21:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Observational Study and controlling variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673903#M32248</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/462"&gt;@PGStats&lt;/a&gt;&amp;nbsp;, while I did not use PSMATCH to create my control/treatment populations I think I got to a similar place using the gmatch macro. Instead of first calculating a propensity score then using that score for the match, I simply matched on my variables. The results looked good. I was able to create a control population that matched on the variables used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the PSMATCH documentation, &lt;EM&gt;"Provided that the distributions of the variables in the adjusted sample are well balanced between the treated and control groups, the output data set serves as input for a subsequent outcome analysis that incorporates weights or strata or that is based on matched observations. Although the PSMATCH procedure itself does not provide this analysis, many other SAS/STAT procedures can be used for this purpose."&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on this, if I do in fact have a confounding variable this is not balanced between my populations then I think my best approach is to re-make the control population to balance for additional variables.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also in the documentation I see we can perform a sensitivity analysis to help decide if my results should be negated. I will look into this more.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Aug 2020 13:39:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673903#M32248</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2020-08-01T13:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Observational Study and controlling variables</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673957#M32251</link>
      <description>&lt;P&gt;To do a sensitivity analysis on matched pairs it seems we need to know the probability of the individual being in the treatment/control group. How do we know this probability? Would we use a logistic regression to model the likelihood of an individual being in the treatment group using the variables used in the matching?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="supp_0-1596325545159.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47864iD45439E0775B2E61/image-size/large?v=v2&amp;amp;px=999" role="button" title="supp_0-1596325545159.png" alt="supp_0-1596325545159.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Aug 2020 23:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Observational-Study-and-controlling-variables/m-p/673957#M32251</guid>
      <dc:creator>supp</dc:creator>
      <dc:date>2020-08-01T23:47:16Z</dc:date>
    </item>
  </channel>
</rss>

