<?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: How to compare regression coefficients of multiple proc panel procedures in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671400#M32089</link>
    <description>&lt;P&gt;Yea I am aware of that. Nonetheless, the qualitative construct underlying the tests requires me to test it. Think of the following example: You have physical activity as an independent variable.&amp;nbsp; Now you have the muscle development of different parts of your body as your dependent variable. Muscle development in your right arm would be e.g. dependent variable 1, muscle development in your left arm would be e.g. dependent variable 2. You want to compare how the same independent variable, i.e. physical activity, affects different muscle parts of your body differently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course, one can expect that when the dependent variable changes, i.e. muscle development of the respective bodypart, the relationship changes. Nonetheless there might be the need to determine wether the difference is statistically significant.&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jul 2020 14:32:36 GMT</pubDate>
    <dc:creator>shenflow</dc:creator>
    <dc:date>2020-07-22T14:32:36Z</dc:date>
    <item>
      <title>How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671384#M32086</link>
      <description>&lt;P&gt;I am running 10 fixed two-way panel regressions of the following form on the same dataset:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc panel data = input outest = output_est_1;
id gvkey rankyear;
model diff_1 = ind_1 ind_2 ind_3
/ fixtwo;
ods output FitStatistics = output_fit_1;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc panel data = input outest = output_est_2;
id gvkey rankyear;
model diff_2 = ind_1 ind_2 ind_3
/ fixtwo;
ods output FitStatistics = output_fit_2;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;That is, I repeat the same regression procedure with 10 different dependent variables. I then want to compare the estimated values of the independent variables across the 10 models. Put differently, I want to see if the value of ind_1/ind_2/ind_3 changes when the dependent variable changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to do this efficiently in SAS? I was thinking about doing a basic t-test pairwise. However, I would have to do this (10*10)-10 = 90 times to cover all possible pairs. Is this the way to go and if so, how would I employ this efficiently using the regression outputs I get from the proc panel procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 14:09:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671384#M32086</guid>
      <dc:creator>shenflow</dc:creator>
      <dc:date>2020-07-22T14:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671391#M32087</link>
      <description>&lt;P&gt;Logically when you change the Y variable, the regression coefficients ought to change. The null hypothesis of no change in the regression coefficients does not make sense here. So, I don't think this is a logical test, and I do not know of any statistically valid way to do this.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 14:20:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671391#M32087</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-22T14:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671400#M32089</link>
      <description>&lt;P&gt;Yea I am aware of that. Nonetheless, the qualitative construct underlying the tests requires me to test it. Think of the following example: You have physical activity as an independent variable.&amp;nbsp; Now you have the muscle development of different parts of your body as your dependent variable. Muscle development in your right arm would be e.g. dependent variable 1, muscle development in your left arm would be e.g. dependent variable 2. You want to compare how the same independent variable, i.e. physical activity, affects different muscle parts of your body differently.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Of course, one can expect that when the dependent variable changes, i.e. muscle development of the respective bodypart, the relationship changes. Nonetheless there might be the need to determine wether the difference is statistically significant.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 14:32:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671400#M32089</guid>
      <dc:creator>shenflow</dc:creator>
      <dc:date>2020-07-22T14:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671403#M32090</link>
      <description>&lt;P&gt;Okay, we don't agree on this. Maybe someone else thinks this makes sense and knows how to do this.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jul 2020 14:33:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671403#M32090</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-22T14:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671426#M32091</link>
      <description>I agree with you - sorry for the confusion. I misformulated my question and misinterpreted my problem. I will post another question reformulating the problem properly.</description>
      <pubDate>Wed, 22 Jul 2020 15:09:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671426#M32091</guid>
      <dc:creator>shenflow</dc:creator>
      <dc:date>2020-07-22T15:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare regression coefficients of multiple proc panel procedures</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671511#M32102</link>
      <description>&lt;P&gt;Consider a multivariate analysis of variance using PROC GLM.&amp;nbsp; Something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
   class Yendpointname;
   model ind1 ind2 ind3= Yendpointname;
   manova h=_all_ / printe printh;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You might wish to weight the different endpoints by 1/RMSError of the regression.&amp;nbsp; That would add a WEIGHT statement, and you would need to calculate this variable in a DATA step, where you create the dataset 'have'.&amp;nbsp; I won't give any guarantees, for two reasons.&amp;nbsp; First, you don't have any replication of the ind_ variables per endpoint (so you might have a singular matrix), and second, I am not sure you can actually combine a WEIGHT statement with a MANOVA statement.&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>Wed, 22 Jul 2020 18:09:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-regression-coefficients-of-multiple-proc-panel/m-p/671511#M32102</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2020-07-22T18:09:05Z</dc:date>
    </item>
  </channel>
</rss>

