<?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 Multicolinearity in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802676#M39446</link>
    <description>&lt;P&gt;&lt;SPAN&gt;To study the effect of the multicollinearity on response prediction, fill in the table below. For the last two columns, predict BODY FAT of an adult male with WEIGHT= 180 lbs, ABDOMEN = 90 cm and CHEST = 100 cm.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saza_0-1647540787627.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69543i5C26FC8469DB0293/image-size/medium?v=v2&amp;amp;px=400" role="button" title="saza_0-1647540787627.png" alt="saza_0-1647540787627.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The following code gives me a value of zero for everything.&lt;/P&gt;
&lt;PRE&gt;proc reg data=bodyfat.bodyfat;&lt;BR /&gt;model pctFatSiri = weight abdomen chest;&lt;BR /&gt;where weight = 180;&lt;BR /&gt;where abdomen = 90;&lt;BR /&gt;where chest = 100;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saza_1-1647540850101.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69544i1B4DFFAB4D0593E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="saza_1-1647540850101.png" alt="saza_1-1647540850101.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 17 Mar 2022 18:14:17 GMT</pubDate>
    <dc:creator>saza</dc:creator>
    <dc:date>2022-03-17T18:14:17Z</dc:date>
    <item>
      <title>Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802676#M39446</link>
      <description>&lt;P&gt;&lt;SPAN&gt;To study the effect of the multicollinearity on response prediction, fill in the table below. For the last two columns, predict BODY FAT of an adult male with WEIGHT= 180 lbs, ABDOMEN = 90 cm and CHEST = 100 cm.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saza_0-1647540787627.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69543i5C26FC8469DB0293/image-size/medium?v=v2&amp;amp;px=400" role="button" title="saza_0-1647540787627.png" alt="saza_0-1647540787627.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The following code gives me a value of zero for everything.&lt;/P&gt;
&lt;PRE&gt;proc reg data=bodyfat.bodyfat;&lt;BR /&gt;model pctFatSiri = weight abdomen chest;&lt;BR /&gt;where weight = 180;&lt;BR /&gt;where abdomen = 90;&lt;BR /&gt;where chest = 100;&lt;BR /&gt;run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="saza_1-1647540850101.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/69544i1B4DFFAB4D0593E9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="saza_1-1647540850101.png" alt="saza_1-1647540850101.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 18:14:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802676#M39446</guid>
      <dc:creator>saza</dc:creator>
      <dc:date>2022-03-17T18:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802677#M39447</link>
      <description>&lt;P&gt;The output indicates you have only one observation in your data. You can't fit a model to that, and there is 0 degrees of freedom, all regression coefficients are missing, there is no multicollinearity (or in the trival sense, with one observation, everything is perfectly correlated with everything else)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fix the input data so that there are enough observations to fit the model.&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 18:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802677#M39447</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-17T18:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802679#M39448</link>
      <description>proc reg data=bodyft;&lt;BR /&gt;model pctfatsiri = weight;&lt;BR /&gt;model pctfatsiri = abdomen;&lt;BR /&gt;model pctfatsiri = chest;&lt;BR /&gt;model pctfatsiri = weight abdomen;&lt;BR /&gt;model pctfatsiri= weight chest;&lt;BR /&gt;model pctfatsiri = abdomen chest;&lt;BR /&gt;model pctfatsiri = weight abdomen chest;&lt;BR /&gt;where weight = 180 Abdomen = 90 Chest = 100;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;like this?</description>
      <pubDate>Thu, 17 Mar 2022 18:25:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802679#M39448</guid>
      <dc:creator>saza</dc:creator>
      <dc:date>2022-03-17T18:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802684#M39450</link>
      <description>&lt;P&gt;There are so many problems here that I don't even know where to begin, most of them relating to confusion on your part about (seemingly) the entire problem. I don't have the time right now to go into all of this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 18:45:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802684#M39450</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-03-17T18:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802685#M39451</link>
      <description>That was the table that was given with that problem set</description>
      <pubDate>Thu, 17 Mar 2022 18:42:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802685#M39451</guid>
      <dc:creator>saza</dc:creator>
      <dc:date>2022-03-17T18:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Multicolinearity</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802687#M39452</link>
      <description>&lt;P&gt;What you are trying to do is very similar to this example in the documentation.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_reg_examples03.htm" target="_blank"&gt;SAS Help Center: Example 102.3 Predicting Weight by Height and Age&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You would not want to use a WHERE statement to limit the observations in the input data set.&amp;nbsp; Instead it seems you are to take the parameter estimates from each of the models you fit and make predictions and get prediction intervals based on those values for the independent variable.&amp;nbsp; You could use the OUTPUT statement to get predictions/intervals for all the observations and then limit that data set using a WHERE statement to the values that you are interested in.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Mar 2022 18:43:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Multicolinearity/m-p/802687#M39452</guid>
      <dc:creator>SAS_Rob</dc:creator>
      <dc:date>2022-03-17T18:43:00Z</dc:date>
    </item>
  </channel>
</rss>

