<?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: i wanna interpretation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532389#M73771</link>
    <description>&lt;P&gt;Well, I can't see your data. But you have to dig in a little deeper to find out. For example, what data do you get when you run this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
   set found1;
   where year=2008 and indusCode='G60';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If it is all missing for your regression variables, then you have your answer&lt;/P&gt;</description>
    <pubDate>Sun, 03 Feb 2019 13:25:01 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-02-03T13:25:01Z</dc:date>
    <item>
      <title>Interpretation of Errors from PROC REG - No valid observations found</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532383#M73768</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;/P&gt;
&lt;P&gt;when I run this code&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc reg noprint data=found1 outest=regress1;
model TACC1=  part1 part2 part3/ r;
by year induscode; run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;the sas program gave me this message&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2008 indusCode=G60&lt;BR /&gt;ERROR: No valid observations are found.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2009 indusCode=C24&lt;BR /&gt;ERROR: No valid observations are found.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2016 indusCode=E49&lt;BR /&gt;ERROR: No valid observations are found.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2017 indusCode=B10&lt;BR /&gt;ERROR: No valid observations are found.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2017 indusCode=O80&lt;BR /&gt;ERROR: No valid observations are found.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;year=2017 indusCode=R88&lt;BR /&gt;NOTE: Interactivity disabled with BY processing.&lt;BR /&gt;NOTE: PROCEDURE REG used (Total process time):&lt;BR /&gt;real time 0.80 seconds&lt;BR /&gt;cpu time 0.68 seconds&lt;/P&gt;
&lt;P&gt;NOTE: The data set WORK.REGRESS2 has 1296 observations and 11 variables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I got the results&amp;nbsp; but i m doubted about this message.&lt;/P&gt;
&lt;P&gt;please what does it mean?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 Feb 2019 01:23:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532383#M73768</guid>
      <dc:creator>Radwan</dc:creator>
      <dc:date>2019-02-04T01:23:41Z</dc:date>
    </item>
    <item>
      <title>Re: i wanna interpretation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532387#M73769</link>
      <description>&lt;P&gt;This happens because you do not have valid data for some of your by groups. Below is a very simple example where I added an observation to the sashelp.class data set with the sex variable value 'T'. Then I set the height and weight variables to missing and run a similar regression and use sex as a BY variable..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data regdata;
   set sashelp.class end=eof;
   output;
   if eof then do;
      SEX='T';
      call missing(height, weight);
      output;
   end;
run;

proc sort data=regdata;
   by sex;
run;

proc reg data=regdata noprint;
   model weight=height;
   by sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;To clarify&lt;/STRONG&gt;..&amp;nbsp; You will get regression results to interpret on. But &lt;STRONG&gt;not&amp;nbsp;&lt;/STRONG&gt;for the by-groups that do not have valid data.&lt;/P&gt;</description>
      <pubDate>Sun, 03 Feb 2019 13:19:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532387#M73769</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-02-03T13:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: i wanna interpretation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532388#M73770</link>
      <description>Ok but what kind of non validity of&amp;nbsp; the data?</description>
      <pubDate>Sun, 03 Feb 2019 13:21:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532388#M73770</guid>
      <dc:creator>Radwan</dc:creator>
      <dc:date>2019-02-03T13:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: i wanna interpretation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532389#M73771</link>
      <description>&lt;P&gt;Well, I can't see your data. But you have to dig in a little deeper to find out. For example, what data do you get when you run this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data test;
   set found1;
   where year=2008 and indusCode='G60';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If it is all missing for your regression variables, then you have your answer&lt;/P&gt;</description>
      <pubDate>Sun, 03 Feb 2019 13:25:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532389#M73771</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-02-03T13:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: Interpretation of Errors from PROC REG - No valid observations found</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532475#M73785</link>
      <description>FYI - I've updated your subject here to make it more descriptive. Please do the same to your other open post: &lt;A href="https://communities.sas.com/t5/SAS-Procedures/a-new-question/m-p/532382" target="_blank"&gt;https://communities.sas.com/t5/SAS-Procedures/a-new-question/m-p/532382&lt;/A&gt;</description>
      <pubDate>Mon, 04 Feb 2019 01:24:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Interpretation-of-Errors-from-PROC-REG-No-valid-observations/m-p/532475#M73785</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-04T01:24:09Z</dc:date>
    </item>
  </channel>
</rss>

