<?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: Unable to retrive model information (Does not show results for one of my groups under study) in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538554#M74031</link>
    <description>&lt;P&gt;That by-group must be flawed in some way, probably insufficient valid data. For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;1665  /* Empty out one of the by-groups in sashelp.heart */
1666  data heartMod;
1667  set sashelp.heart;
1668  if smoking_status="Light (1-5)" then call missing(cholesterol);
1669  run;

NOTE: There were 5209 observations read from the data set SASHELP.HEART.
NOTE: The data set WORK.HEARTMOD has 5209 observations and 17 variables.
NOTE: DATA statement used (Total process time):
      real time           0.17 seconds
      cpu time            0.01 seconds


1670
1671  proc sort data=heartMod; by smoking_status; run;

NOTE: There were 5209 observations read from the data set WORK.HEARTMOD.
NOTE: The data set WORK.HEARTMOD has 5209 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.07 seconds
      cpu time            0.00 seconds


1672
1673  proc mixed data=heartMod plots=none;
1674  by smoking_status;
1675  class sex;
1676  model cholesterol = sex;
1677  store heartStore;
1678  run;

NOTE: 28 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=' '
NOTE: 17 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Heavy (16-25)
ERROR: No valid observations are present.
NOTE: The above message was for the following BY group:
      Smoking Status=Light (1-5)
NOTE: 13 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Moderate (6-15)
NOTE: 65 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Non-smoker
NOTE: 13 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Very Heavy (&amp;gt; 25)
NOTE: The MIXED procedure generated the model item store WORK.HEARTSTORE.
NOTE: PROCEDURE MIXED used (Total process time):
      real time           0.23 seconds
      cpu time            0.07 seconds


1679
1680  proc plm source=heartStore;
1681  lsmeans sex / diff;
1682  run;

WARNING: Unable to retrieve model information from item store WORK.HEARTSTORE.
NOTE: The above message was for the following BY group:
      Smoking_Status=Light (1-5)
NOTE: PROCEDURE PLM used (Total process time):
      real time           10.59 seconds
      cpu time            2.63 seconds
&lt;/PRE&gt;
&lt;P&gt;You will most likely have to exclude that group from the analysis. You can do so by adding a where statement in proc mixed, something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;where depth ne "40-56";&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Feb 2019 05:18:13 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2019-02-26T05:18:13Z</dc:date>
    <item>
      <title>Unable to retrive model information (Does not show results for one of my groups under study)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538431#M74028</link>
      <description>&lt;P&gt;&lt;FONT color="#000000" face="times new roman,times"&gt;I use SAS University edition to analyze my data. While using SAS PLM Procedure, it give a warning message: &lt;SPAN style="text-align: left; color: #008000; text-transform: none; text-indent: 0px; letter-spacing: normal; font-family: Consolas,Courier,'Courier New'; font-size: 16px; font-style: normal; font-variant: normal; text-decoration: none; word-spacing: 0px; display: inline !important; white-space: pre; orphans: 2; float: none; -webkit-text-stroke-width: 0px; background-color: transparent;"&gt;WARNING: Unable to retrieve model information from item store WORK.PROGRAM1&lt;/SPAN&gt; with a note of&lt;/FONT&gt;&lt;/P&gt;&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000" face="times new roman,times"&gt;NOTE: &lt;FONT color="#0000ff"&gt;The above message was for the following BY group:&lt;/FONT&gt;&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000" face="times new roman,times"&gt;&lt;FONT color="#0000ff"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; depth=40-60&lt;/FONT&gt; and does not show results for one of my groups (depth). However, it shows results for other three groups of my data.&amp;nbsp;How can this problem be solved? I have pasted the codes that I have used. Thank you in advance. &lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&lt;FONT color="#000000" face="courier new,courier" size="1"&gt;proc sort data=WORK.IMPORT;&lt;BR /&gt;by depth year;&lt;BR /&gt;ods output type3=aov3;&lt;BR /&gt;proc mixed data=WORK.IMPORT method=type3;&lt;BR /&gt;by depth;&lt;BR /&gt;class year trt rep;&lt;BR /&gt;model avln = rep trt year trt*year /ddfm=satterth;&lt;BR /&gt;random rep*trt rep*year;&lt;BR /&gt;store Program1;&lt;BR /&gt;run;&lt;BR /&gt;proc print data = aov3;&lt;BR /&gt;run;&lt;BR /&gt;proc plm source=Program1;&lt;BR /&gt;lsmeans trt year trt*year /diff lines; * adjust=tukey;&lt;BR /&gt;run;&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 25 Feb 2019 20:45:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538431#M74028</guid>
      <dc:creator>pramodacharya</dc:creator>
      <dc:date>2019-02-25T20:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to retrive model information (Does not show results for one of my groups under study)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538554#M74031</link>
      <description>&lt;P&gt;That by-group must be flawed in some way, probably insufficient valid data. For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;1665  /* Empty out one of the by-groups in sashelp.heart */
1666  data heartMod;
1667  set sashelp.heart;
1668  if smoking_status="Light (1-5)" then call missing(cholesterol);
1669  run;

NOTE: There were 5209 observations read from the data set SASHELP.HEART.
NOTE: The data set WORK.HEARTMOD has 5209 observations and 17 variables.
NOTE: DATA statement used (Total process time):
      real time           0.17 seconds
      cpu time            0.01 seconds


1670
1671  proc sort data=heartMod; by smoking_status; run;

NOTE: There were 5209 observations read from the data set WORK.HEARTMOD.
NOTE: The data set WORK.HEARTMOD has 5209 observations and 17 variables.
NOTE: PROCEDURE SORT used (Total process time):
      real time           0.07 seconds
      cpu time            0.00 seconds


1672
1673  proc mixed data=heartMod plots=none;
1674  by smoking_status;
1675  class sex;
1676  model cholesterol = sex;
1677  store heartStore;
1678  run;

NOTE: 28 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=' '
NOTE: 17 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Heavy (16-25)
ERROR: No valid observations are present.
NOTE: The above message was for the following BY group:
      Smoking Status=Light (1-5)
NOTE: 13 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Moderate (6-15)
NOTE: 65 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Non-smoker
NOTE: 13 observations are not included because of missing values.
NOTE: The above message was for the following BY group:
      Smoking Status=Very Heavy (&amp;gt; 25)
NOTE: The MIXED procedure generated the model item store WORK.HEARTSTORE.
NOTE: PROCEDURE MIXED used (Total process time):
      real time           0.23 seconds
      cpu time            0.07 seconds


1679
1680  proc plm source=heartStore;
1681  lsmeans sex / diff;
1682  run;

WARNING: Unable to retrieve model information from item store WORK.HEARTSTORE.
NOTE: The above message was for the following BY group:
      Smoking_Status=Light (1-5)
NOTE: PROCEDURE PLM used (Total process time):
      real time           10.59 seconds
      cpu time            2.63 seconds
&lt;/PRE&gt;
&lt;P&gt;You will most likely have to exclude that group from the analysis. You can do so by adding a where statement in proc mixed, something like:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;where depth ne "40-56";&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 05:18:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538554#M74031</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-26T05:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to retrive model information (Does not show results for one of my groups under study)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538555#M74032</link>
      <description>&lt;P&gt;Thank you for your reply.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="display: inline !important; float: none; background-color: #eaeaea; color: #333333; font-family: monospace,monospace; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: pre; word-spacing: 0px; word-wrap: normal;"&gt;WARNING: Unable to retrieve model information from item store WORK.HEARTSTORE.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Smoking_Status=Light (1-5)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I do have similar logs while analyzing data. But, I checked my data set, even created new excel file. But, it still showed the similar results. But, I need the results for that group as well. Can you say other possible reasons for this happening? I will check my dataset once again. Thank you so much.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Pramod.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 05:32:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538555#M74032</guid>
      <dc:creator>pramodacharya</dc:creator>
      <dc:date>2019-02-26T05:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Unable to retrive model information (Does not show results for one of my groups under study)</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538559#M74034</link>
      <description>&lt;P&gt;Check the dataset AFTER it is imported into SAS. Some data might be lost during importation.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Feb 2019 05:43:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Unable-to-retrive-model-information-Does-not-show-results-for/m-p/538559#M74034</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2019-02-26T05:43:43Z</dc:date>
    </item>
  </channel>
</rss>

