<?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: Meta analysis of linear regression results using proc mixed procedure in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675083#M32324</link>
    <description>&lt;P&gt;The PROC MIXED code you presented will work for the coefficients, provided you have equal numbers of observations for each location and the variances are relatively equal.&amp;nbsp; However in this case it probably makes more sense to fit the regressions with location as a random effect.&amp;nbsp; I don't know what the independent variable and dependent variable are for your case, so I will just put them in as X and Y, respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then combine the datasets (if available to you) into a single dataset (called HAVE in this case), and try the following;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=have;
class location;
model y = x / solution cl;
random location / solution;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you go this route, you will not have to worry about how to convert the std errors of the parameters into weights for the analysis.&amp;nbsp; However, this method can be a problem if you have only summary data (coefficients and s.e.'s for several studies/locations).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 06 Aug 2020 17:43:12 GMT</pubDate>
    <dc:creator>SteveDenham</dc:creator>
    <dc:date>2020-08-06T17:43:12Z</dc:date>
    <item>
      <title>Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675071#M32321</link>
      <description>&lt;P&gt;Hi everyone, Thank you in advance for your help. I am a SAS beginner, and trying to carry out meta analysis using proc mixed.&lt;/P&gt;&lt;P&gt;I have results from two linear regressions carried out, stratifying by location. I need to meta analyse regression results from two locations.&lt;/P&gt;&lt;P&gt;I am stuck at the beginning &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) What should be the input data for this analysis? Is it the whole dataset (merged from both locations), or beta and se estimates from the two models?&lt;/P&gt;&lt;P&gt;2) Do I need to include a "parms" statement and include my estimates this way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do realize my program should look something like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PROC MIXED DATA=final;&lt;BR /&gt;CLASS location;&lt;BR /&gt;MODEL protein = / P SOLUTION;&lt;BR /&gt;RANDOM location / SOLUTION;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much again!!!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 16:57:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675071#M32321</guid>
      <dc:creator>Abishekaa</dc:creator>
      <dc:date>2020-08-06T16:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675083#M32324</link>
      <description>&lt;P&gt;The PROC MIXED code you presented will work for the coefficients, provided you have equal numbers of observations for each location and the variances are relatively equal.&amp;nbsp; However in this case it probably makes more sense to fit the regressions with location as a random effect.&amp;nbsp; I don't know what the independent variable and dependent variable are for your case, so I will just put them in as X and Y, respectively.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then combine the datasets (if available to you) into a single dataset (called HAVE in this case), and try the following;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc mixed data=have;
class location;
model y = x / solution cl;
random location / solution;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you go this route, you will not have to worry about how to convert the std errors of the parameters into weights for the analysis.&amp;nbsp; However, this method can be a problem if you have only summary data (coefficients and s.e.'s for several studies/locations).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 17:43:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675083#M32324</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-06T17:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675084#M32325</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Thank you so much! I do have all the data available, so I can try this method.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;In the regressions, we also adjust for different variables (eg: age, gender). How do I include these in the meta analyses? Would it be similar to the code below?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;proc mixed data=have;
class location gender;
model y = x age gender/ solution cl;
random location / solution;
run;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 17:48:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675084#M32325</guid>
      <dc:creator>Abishekaa</dc:creator>
      <dc:date>2020-08-06T17:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675086#M32326</link>
      <description>&lt;P&gt;That will work.&amp;nbsp; I assume you have already done checking for equal slopes in the analyses for each location.&amp;nbsp; In particular, I would look at the x by gender interaction, to make sure that the slopes were equal across genders.&amp;nbsp; If the slopes are not equal and you don't accommodate that finding, you can easily end up with paradoxical results, especially once you start looking at marginal results averaged over locations.&amp;nbsp; Google "Simpsons paradox" for examples.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 17:55:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675086#M32326</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-06T17:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675266#M32332</link>
      <description>&lt;P&gt;Thank you, Steve.&lt;/P&gt;&lt;P&gt;IF only the summary data was available, could you please explain how to run this meta analysis / direct me to a paper/tutorial for it?&lt;/P&gt;&lt;P&gt;I appreciate your help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2020 17:39:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675266#M32332</guid>
      <dc:creator>Abishekaa</dc:creator>
      <dc:date>2020-08-07T17:39:19Z</dc:date>
    </item>
    <item>
      <title>Re: Meta analysis of linear regression results using proc mixed procedure</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675577#M32361</link>
      <description>&lt;P&gt;I think a great source for learning about, and how to do, meta-analysis is the Cochrane Learning site, and in particular, the&amp;nbsp;&lt;STRONG&gt;Cochrane Handbook for Systematic Reviews of Interventions.&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;It is available on-line, but download of pdfs is restricted.&amp;nbsp; Chapter 10&amp;nbsp;&lt;A href="https://training.cochrane.org/handbook/current/chapter-10" target="_self"&gt;https://training.cochrane.org/handbook/current/chapter-10&lt;/A&gt;&amp;nbsp; covers meta analysis, both fixed effect and random effect methods. SAS doesn't specifically have a procedure for meta-analysis--you would use appropriate procedures to get confidence bounds or p values.&amp;nbsp; Forest plots and funnel plots can be done using PROC SGPLOT--search online for papers on how to implement these.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SteveDenham&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 13:07:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Meta-analysis-of-linear-regression-results-using-proc-mixed/m-p/675577#M32361</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-08-10T13:07:19Z</dc:date>
    </item>
  </channel>
</rss>

