<?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: Solving full rank issue in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413631#M21695</link>
    <description>&lt;P&gt;Thank you for your help, I'm going to look into that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For further details, I use proc reg or proc autoreg and these variables are not binary. The variables can be divided into two categories, and are calculated relatively within their category to induce stationarity, i.e. their sum for a category equals 1.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2017 14:04:42 GMT</pubDate>
    <dc:creator>Alain38</dc:creator>
    <dc:date>2017-11-15T14:04:42Z</dc:date>
    <item>
      <title>Solving full rank issue</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413597#M21693</link>
      <description>&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I noticed that to estimate betas in a regression (without intercept) subject to a full rank problem, SAS automatically sets a beta equals 0 to find least squares solutions .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is perfectly understandable since X'X must be non-singular, which is not the case when there are full rank issues.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was wondering &lt;STRONG&gt;how SAS choose which variable set equal to 0&lt;/STRONG&gt; as in my case, each variable is by construction a linear combination of other variabes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think SAS is doing this randomly since running &lt;EM&gt;proc reg&lt;/EM&gt; several times provides me the same results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Doing the computations manually with &lt;EM&gt;proc IML&lt;/EM&gt;, I thought of two possibilities to determine which variable to omit:&lt;/P&gt;&lt;P&gt;&amp;nbsp; - removing the variable which is the most correlated with others in average (i.e. the variable that has the most redundant information)&lt;/P&gt;&lt;P&gt;&amp;nbsp; - for n variables, running the regression n times by removing each time a different variable, in order to finally keep the regression that exhibits the highest coefficient of multiple determination, which would mean that I actually removed the variable for which the coefficient of&amp;nbsp; partial determination was the lowest (i.e. the variable that contributes the less to the explanation of the observed variations of Y)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any assistance is greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 10:16:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413597#M21693</guid>
      <dc:creator>Alain38</dc:creator>
      <dc:date>2017-11-15T10:16:05Z</dc:date>
    </item>
    <item>
      <title>Re: Solving full rank issue</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413623#M21694</link>
      <description>&lt;P&gt;Most procedures do sequential sweeps.&amp;nbsp; &lt;A href="https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_intromod_a0000000356.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_intromod_a0000000356.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Search for "Goodnight sweep" for other sources.&amp;nbsp; So with a three-level classification variable with three binary variables, it will sweep the first two and skip the last one.&amp;nbsp; Transreg is a notable exception, it uses rational pivoting, which for really weird data can produce more accurate results.&amp;nbsp; Orthoreg also uses a specialized method.&amp;nbsp; See the doc.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 12:11:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413623#M21694</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-11-15T12:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Solving full rank issue</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413631#M21695</link>
      <description>&lt;P&gt;Thank you for your help, I'm going to look into that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For further details, I use proc reg or proc autoreg and these variables are not binary. The variables can be divided into two categories, and are calculated relatively within their category to induce stationarity, i.e. their sum for a category equals 1.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 14:04:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413631#M21695</guid>
      <dc:creator>Alain38</dc:creator>
      <dc:date>2017-11-15T14:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Solving full rank issue</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413686#M21703</link>
      <description>&lt;P&gt;The reference level for the classification effects are set to zero. For a GLM parameterization, it is the last level. You can use the REF= option to specify the reference level. See the section &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_introcom_sect002.htm" target="_self"&gt;"Parameterization of Model Effects" in the SAS/STAT documentation&lt;/A&gt;. For applications and interpretation of different parameterizations, see &lt;A href="http://www2.sas.com/proceedings/sugi30/212-30.pdf" target="_self"&gt;Pasta (2005).&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 15:26:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413686#M21703</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-11-15T15:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Solving full rank issue</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413710#M21714</link>
      <description>&lt;P&gt;Not sure if this is relevant or helpful to what you are doing, but see &lt;A href="http://support.sas.com/kb/22642" target="_self"&gt;this note&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 15:54:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Solving-full-rank-issue/m-p/413710#M21714</guid>
      <dc:creator>StatDave</dc:creator>
      <dc:date>2017-11-15T15:54:44Z</dc:date>
    </item>
  </channel>
</rss>

