<?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: Sas regression in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438326#M109267</link>
    <description>&lt;P&gt;Your code generates no error for me.&lt;/P&gt;</description>
    <pubDate>Mon, 19 Feb 2018 02:46:57 GMT</pubDate>
    <dc:creator>ChrisNZ</dc:creator>
    <dc:date>2018-02-19T02:46:57Z</dc:date>
    <item>
      <title>Sas regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438321#M109264</link>
      <description>&lt;P&gt;I keep getting a no valid observations error.&amp;nbsp; My code works when I only have 2 variables but anymore than that and SAS doesn't know what to do.&amp;nbsp; What am I doing wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data totalHeight;&lt;BR /&gt;input FFD SPR RGF PLF SLF;&lt;BR /&gt;datalines;&lt;BR /&gt;82 1.468 3.30 0.166 0.10&lt;BR /&gt;89 1.605 3.64 0.154 0.10&lt;BR /&gt;101 2.168 4.87 0.177 2.90&lt;BR /&gt;107 2.054 4.72 0.275 1.10&lt;BR /&gt;115 2.467 4.11 0.298 1.00&lt;BR /&gt;122 1.294 3.75 0.150 0.90&lt;BR /&gt;127 2.183 3.97 0.000 2.40&lt;BR /&gt;137 2.426 4.65 0.117 1.80&lt;BR /&gt;147 2.607 3.84 0.155 2.30&lt;BR /&gt;166 4.567 4.92 0.138 3.20&lt;BR /&gt;174 4.588 3.82 0.249 3.50&lt;BR /&gt;175 3.618 4.32 0.143 2.80&lt;BR /&gt;177 5.855 4.53 0.172 2.50&lt;BR /&gt;184 2.898 4.48 0.178 3.00&lt;BR /&gt;187 3.880 5.39 0.101 3.00&lt;BR /&gt;189 0.455 4.99 0.008 2.64&lt;BR /&gt;194 8.088 4.50 0.251 2.70&lt;BR /&gt;197 6.502 5.20 0.366 2.90&lt;BR /&gt;201 6.081 5.65 0.106 2.90&lt;BR /&gt;204 7.105 5.40 0.089 3.20&lt;BR /&gt;255 8.548 4.20 0.222 2.90&lt;BR /&gt;328 6.321 6.45 0.187 2.00&lt;BR /&gt;;&lt;BR /&gt;proc reg data=totalHeight;&lt;BR /&gt;model FFD=SPR RGF PLF SLF/selection=stepwise;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 02:40:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438321#M109264</guid>
      <dc:creator>alexPrice</dc:creator>
      <dc:date>2018-02-19T02:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Sas regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438325#M109266</link>
      <description>&lt;P&gt;Works fine for me. Post your exact code and log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 1          OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 68         
 69         data totalHeight;
 70         input FFD SPR RGF PLF SLF;
 71         datalines;
 
 NOTE: The data set WORK.TOTALHEIGHT has 22 observations and 5 variables.
 NOTE: DATA statement used (Total process time):
       real time           0.00 seconds
       cpu time            0.01 seconds
       
 
 94         ;
 95         proc reg data=totalHeight;
 96         model FFD=SPR RGF PLF SLF/selection=stepwise;
 97         run;
 
 98         
 99         OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
 110   &lt;/CODE&gt;&lt;/PRE&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/194182"&gt;@alexPrice&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I keep getting a no valid observations error.&amp;nbsp; My code works when I only have 2 variables but anymore than that and SAS doesn't know what to do.&amp;nbsp; What am I doing wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data totalHeight;&lt;BR /&gt;input FFD SPR RGF PLF SLF;&lt;BR /&gt;datalines;&lt;BR /&gt;82 1.468 3.30 0.166 0.10&lt;BR /&gt;89 1.605 3.64 0.154 0.10&lt;BR /&gt;101 2.168 4.87 0.177 2.90&lt;BR /&gt;107 2.054 4.72 0.275 1.10&lt;BR /&gt;115 2.467 4.11 0.298 1.00&lt;BR /&gt;122 1.294 3.75 0.150 0.90&lt;BR /&gt;127 2.183 3.97 0.000 2.40&lt;BR /&gt;137 2.426 4.65 0.117 1.80&lt;BR /&gt;147 2.607 3.84 0.155 2.30&lt;BR /&gt;166 4.567 4.92 0.138 3.20&lt;BR /&gt;174 4.588 3.82 0.249 3.50&lt;BR /&gt;175 3.618 4.32 0.143 2.80&lt;BR /&gt;177 5.855 4.53 0.172 2.50&lt;BR /&gt;184 2.898 4.48 0.178 3.00&lt;BR /&gt;187 3.880 5.39 0.101 3.00&lt;BR /&gt;189 0.455 4.99 0.008 2.64&lt;BR /&gt;194 8.088 4.50 0.251 2.70&lt;BR /&gt;197 6.502 5.20 0.366 2.90&lt;BR /&gt;201 6.081 5.65 0.106 2.90&lt;BR /&gt;204 7.105 5.40 0.089 3.20&lt;BR /&gt;255 8.548 4.20 0.222 2.90&lt;BR /&gt;328 6.321 6.45 0.187 2.00&lt;BR /&gt;;&lt;BR /&gt;proc reg data=totalHeight;&lt;BR /&gt;model FFD=SPR RGF PLF SLF/selection=stepwise;&lt;BR /&gt;run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 19 Feb 2018 02:46:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438325#M109266</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-19T02:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: Sas regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438326#M109267</link>
      <description>&lt;P&gt;Your code generates no error for me.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 02:46:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438326#M109267</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-02-19T02:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Sas regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438328#M109268</link>
      <description>&lt;P&gt;I copied the code from my post and put it back into my SAS and it works now, I am not sure why but that is super annoying, I spent about an hour trying to figure out why it wouldn't work.&amp;nbsp; O well.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 02:51:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438328#M109268</guid>
      <dc:creator>alexPrice</dc:creator>
      <dc:date>2018-02-19T02:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: Sas regression</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438339#M109275</link>
      <description>&lt;P&gt;Even though no error was found in your program, please mark your topic as solved.&amp;nbsp; I'd recommend marking your own response reporting that resubmission ran successfully as the "solution".&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2018 04:10:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Sas-regression/m-p/438339#M109275</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2018-02-19T04:10:30Z</dc:date>
    </item>
  </channel>
</rss>

