<?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 Output coefficients from Proc GLM model in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858501#M42428</link>
    <description>&lt;P&gt;Hello SAS users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to estimate a Proc GLM model and save the coefficient estimates in a new dataset.&lt;/P&gt;
&lt;P&gt;The code I am using is below:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc sort data=test;&lt;BR /&gt;by wficn md;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLM DATA=test noprint;&lt;BR /&gt;ods output parameterestimates=params;&lt;BR /&gt;by wficn;&lt;BR /&gt;ABSORB md;&lt;BR /&gt;MODEL y=x1 x2 x3 x4 x5 /SOLUTION;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When the model is estimated, SAS tells me the below, and no file is created:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Interactivity disabled with BY processing.&lt;BR /&gt;NOTE: PROCEDURE GLM used (Total process time):&lt;BR /&gt;real time 0.05 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WARNING: Output 'parameterestimates' was not created. Make sure that the output object name,&lt;BR /&gt;label, or path is spelled correctly. Also, verify that the appropriate procedure&lt;BR /&gt;options are used to produce the requested output object. For example, verify that the&lt;BR /&gt;NOPRINT option is not used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried many different options for the Ods option without success, any help would be much appreciated.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;Costas&lt;/P&gt;</description>
    <pubDate>Mon, 13 Feb 2023 13:24:17 GMT</pubDate>
    <dc:creator>costasRO</dc:creator>
    <dc:date>2023-02-13T13:24:17Z</dc:date>
    <item>
      <title>Output coefficients from Proc GLM model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858501#M42428</link>
      <description>&lt;P&gt;Hello SAS users,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to estimate a Proc GLM model and save the coefficient estimates in a new dataset.&lt;/P&gt;
&lt;P&gt;The code I am using is below:&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc sort data=test;&lt;BR /&gt;by wficn md;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC GLM DATA=test noprint;&lt;BR /&gt;ods output parameterestimates=params;&lt;BR /&gt;by wficn;&lt;BR /&gt;ABSORB md;&lt;BR /&gt;MODEL y=x1 x2 x3 x4 x5 /SOLUTION;&lt;BR /&gt;RUN;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When the model is estimated, SAS tells me the below, and no file is created:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOTE: Interactivity disabled with BY processing.&lt;BR /&gt;NOTE: PROCEDURE GLM used (Total process time):&lt;BR /&gt;real time 0.05 seconds&lt;BR /&gt;cpu time 0.04 seconds&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;WARNING: Output 'parameterestimates' was not created. Make sure that the output object name,&lt;BR /&gt;label, or path is spelled correctly. Also, verify that the appropriate procedure&lt;BR /&gt;options are used to produce the requested output object. For example, verify that the&lt;BR /&gt;NOPRINT option is not used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have tried many different options for the Ods option without success, any help would be much appreciated.&lt;/P&gt;
&lt;P&gt;Thank you!&lt;/P&gt;
&lt;P&gt;Costas&lt;/P&gt;</description>
      <pubDate>Mon, 13 Feb 2023 13:24:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858501#M42428</guid>
      <dc:creator>costasRO</dc:creator>
      <dc:date>2023-02-13T13:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Output coefficients from Proc GLM model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858504#M42429</link>
      <description>&lt;PRE&gt;WARNING: Output 'parameterestimates' was not created. Make sure that the output object name,
label, or path is spelled correctly. Also, verify that the appropriate procedure
options are used to produce the requested output object. &lt;FONT color="#FF0000"&gt;For example, verify that the
NOPRINT option is not used.&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;So, you can't use NOPRINT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you can do is this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods html select none;
proc glm data = test;
/* Your PROC GLM commands */
run;
ods html select all;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Feb 2023 13:38:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858504#M42429</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-02-13T13:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Output coefficients from Proc GLM model</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858506#M42431</link>
      <description>Thank you so much, works perfectly!</description>
      <pubDate>Mon, 13 Feb 2023 13:50:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Output-coefficients-from-Proc-GLM-model/m-p/858506#M42431</guid>
      <dc:creator>costasRO</dc:creator>
      <dc:date>2023-02-13T13:50:38Z</dc:date>
    </item>
  </channel>
</rss>

