<?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: Correct ODS Output Statement for PROC GLMIMMIX for in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911102#M359274</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;Perfect. Thank you so much for your help!&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jan 2024 11:49:12 GMT</pubDate>
    <dc:creator>smackerz1988</dc:creator>
    <dc:date>2024-01-10T11:49:12Z</dc:date>
    <item>
      <title>Correct ODS Output Statement for PROC GLMIMMIX for</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911095#M359271</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm working with &lt;CODE&gt;PROC GLIMMIX&lt;/CODE&gt; in SAS 9.4 and trying to output the 'Solutions for Fixed Effects' table to a dataset using the &lt;CODE&gt;ODS OUTPUT&lt;/CODE&gt; statement. However, I'm receiving a warning that the output 'Solutions' was not created. Here's the part of the code that seems to be causing the issue:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods output SolutionF=beta00;
ods output LSMeans=lsm00;
PROC GLIMMIX data=qs00 METHOD=RSPL; 
title 'Mixed Model Repeated Measures';
CLASS usubjid trtp;  
EFFECT spl=spline(ady); 
MODEL aval = spl base trtp / ddfm=kr solution; 
RANDOM _residual_ / type=cs subject=usubjid; 
by parcat1n parcat1 paramn param ;
where ady&amp;gt;1; /*assumes ady=1 for baseline*/
LSMEANS trtp / at ady=1 cl;  
LSMEANS trtp / at ady = 22 cl ;
LSMEANS trtp / at ady = 43 cl ;
LSMEANS trtp / at ady = 64 cl ;
LSMEANS trtp / at ady = 85 cl ;
run;&lt;/PRE&gt;
&lt;P&gt;The log gives me the following warning&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"WARNING: Output 'SolutionF' was not created. Make sure that the output object name, label, or path is spelled correctly and verify that the appropriate procedure options are used to produce the requested output object. For example, the NOPRINT option is not used."&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I've confirmed that the &lt;/SPAN&gt;&lt;CODE&gt;model&lt;/CODE&gt;&lt;SPAN&gt; statement includes the &lt;/SPAN&gt;&lt;CODE&gt;solution&lt;/CODE&gt;&lt;SPAN&gt; option, and there's no &lt;/SPAN&gt;&lt;CODE&gt;NOPRINT&lt;/CODE&gt;&lt;SPAN&gt; option in use. The 'Solutions for Fixed Effects' table does appear in the Results Window, indicating that it is being generated.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could someone please help me understand why this warning occurs and how to correctly capture this table in my output dataset? Is 'Solutions' the correct output object name for &lt;CODE&gt;PROC GLIMMIX&lt;/CODE&gt; in SAS 9.4?&lt;/P&gt;
&lt;P&gt;Any advice or guidance would be greatly appreciated!&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 10:58:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911095#M359271</guid>
      <dc:creator>smackerz1988</dc:creator>
      <dc:date>2024-01-10T10:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Correct ODS Output Statement for PROC GLMIMMIX for</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911098#M359272</link>
      <description>&lt;P&gt;According to the &lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glimmix_details80.htm" target="_self"&gt;PROC GLIMMIX documentation&lt;/A&gt;, there is no SOLUTIONF table name that can be output via ODS OUTPUT. Maybe you mean SOLUTIONR ?&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 11:05:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911098#M359272</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-01-10T11:05:23Z</dc:date>
    </item>
    <item>
      <title>Re: Correct ODS Output Statement for PROC GLMIMMIX for</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911101#M359273</link>
      <description>&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;nbsp;Any advice or guidance would be greatly appreciated!&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. I encourage you to always put your ODS statements inside the PROC/RUN block, not outside.&lt;/P&gt;
&lt;P&gt;2. When you use the&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;RANDOM _residual_&lt;/PRE&gt;
&lt;P&gt;statement, the label on the ParameterEstimates table changes to "Solutions for Fixed Effects," but it is still called the ParameterEstimates table, as you can determine by usgin ODS TRACE ON; before running the procedure.&lt;/P&gt;
&lt;P&gt;3. Thus, use something like this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS TRACE ON;
title 'Mixed Model Repeated Measures';
PROC GLIMMIX data=qs00 METHOD=RSPL; 
   CLASS usubjid trtp;  
   EFFECT spl=spline(ady); 
   MODEL aval = spl base trtp / ddfm=kr solution; 
   RANDOM _residual_ / type=cs subject=usubjid; 
   by parcat1n parcat1 paramn param ;
   where ady&amp;gt;1; /*assumes ady=1 for baseline*/
   LSMEANS trtp / at ady=1 cl;  
   LSMEANS trtp / at ady = 22 cl ;
   LSMEANS trtp / at ady = 43 cl ;
   LSMEANS trtp / at ady = 64 cl ;
   LSMEANS trtp / at ady = 85 cl ;
   /* output tables to data sets */
   ods output ParameterEstimates=beta00; 
   ods output LSMeans=lsm00; 
run;
ODS TRACE OFF;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 10 Jan 2024 11:40:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911101#M359273</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2024-01-10T11:40:05Z</dc:date>
    </item>
    <item>
      <title>Re: Correct ODS Output Statement for PROC GLMIMMIX for</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911102#M359274</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;Perfect. Thank you so much for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jan 2024 11:49:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Correct-ODS-Output-Statement-for-PROC-GLMIMMIX-for/m-p/911102#M359274</guid>
      <dc:creator>smackerz1988</dc:creator>
      <dc:date>2024-01-10T11:49:12Z</dc:date>
    </item>
  </channel>
</rss>

