<?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 change in regression results from two models: one with N and one with N-1 in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461549#M24095</link>
    <description>Will do - thanks for this!</description>
    <pubDate>Fri, 11 May 2018 14:15:09 GMT</pubDate>
    <dc:creator>jlp2ba</dc:creator>
    <dc:date>2018-05-11T14:15:09Z</dc:date>
    <item>
      <title>How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461419#M24087</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Release: 3.7 (Enterprise Edition)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Java Version: 1.7.0_151&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to compare the change in F-value, R-squared value, t-value, etc of two regression models (one predictor, one criterion in each).&amp;nbsp; Right now I'm running two separate regression models as my way of comparison, but I'd like to see output that details the change as a result of running the second model which removes one observation that had high Cook's&amp;nbsp;&lt;EM&gt;D.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My code looks like this right now:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title2 'Model1 with DMUS_pre only';
proc reg data = wombat.popedataset2 plots(label)=(RStudentByLeverage CooksD);
  model dmus_post = dmus_pre / ss1 ss2 stb clb corrb influence r cli clm;
run;

*REMOVE HIGH COOK'S D STUDENT;
title2 'Model2 with DMUS_pre only MINUS ONE PARTICIPANT';
proc reg data = wombat.popedataset2 plots(label)=(RStudentByLeverage CooksD);
  model dmus_post = dmus_pre / ss1 ss2 stb clb corrb influence r cli clm;
  where participant_ ^= 804; 
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 20:34:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461419#M24087</guid>
      <dc:creator>jlp2ba</dc:creator>
      <dc:date>2018-05-10T20:34:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461426#M24088</link>
      <description>&lt;P&gt;I'm not aware of any statistical test to compare a regression on &lt;EM&gt;n&lt;/EM&gt; observations with a regression run on &lt;EM&gt;n-1&lt;/EM&gt; observations. In fact, the idea of doing a statistical test in this instance seems to me to be unnecessary and improper. In fact, except for some trivial situations, the R-squared and t-value are different, not in the statistical hypothesis testing framework (which doesn't make sense here), but just different because they are different numbers.&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 21:52:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461426#M24088</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-10T21:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461436#M24089</link>
      <description>&lt;P&gt;PaigeMiller,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&amp;nbsp; I'm a novice at this so it may be a poor question.&amp;nbsp; I've just noticed that removing the high-influence observation improved the fit and increased the r-squared value and F-value.&amp;nbsp; I was wondering if there was a way to identify the change in r-squared, or if I can do model 2 r-sq minus model 1 r-sq.&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 22:35:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461436#M24089</guid>
      <dc:creator>jlp2ba</dc:creator>
      <dc:date>2018-05-10T22:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461474#M24091</link>
      <description>&lt;P&gt;Try running&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc robustreg data = wombat.popedataset2;
  model dmus_post = dmus_pre / diagnostics;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to see if your suspected outlier is idenfified by the procedure.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 05:12:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461474#M24091</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2018-05-11T05:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461514#M24092</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/170390"&gt;@jlp2ba&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;PaigeMiller,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was wondering if there was a way to identify the change in r-squared, or if I can do model 2 r-sq minus model 1 r-sq.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I would recommend actually making a plot of the data with the two different regression lines shown, and see what the difference is.&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 10:44:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461514#M24092</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-05-11T10:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461548#M24094</link>
      <description>Gotcha - Thank you!</description>
      <pubDate>Fri, 11 May 2018 14:14:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461548#M24094</guid>
      <dc:creator>jlp2ba</dc:creator>
      <dc:date>2018-05-11T14:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to compare change in regression results from two models: one with N and one with N-1</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461549#M24095</link>
      <description>Will do - thanks for this!</description>
      <pubDate>Fri, 11 May 2018 14:15:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-compare-change-in-regression-results-from-two-models-one/m-p/461549#M24095</guid>
      <dc:creator>jlp2ba</dc:creator>
      <dc:date>2018-05-11T14:15:09Z</dc:date>
    </item>
  </channel>
</rss>

