<?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: How to increase your estimate and standard error output to 6 decimals under glimmix procedure in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746594#M80667</link>
    <description>Also got this warning&lt;BR /&gt;WARNING: Output 'parameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;BR /&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;BR /&gt;that the NOPRINT option is not used.</description>
    <pubDate>Tue, 08 Jun 2021 21:33:23 GMT</pubDate>
    <dc:creator>kellychan84</dc:creator>
    <dc:date>2021-06-08T21:33:23Z</dc:date>
    <item>
      <title>How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746586#M80661</link>
      <description>&lt;PRE&gt;proc glimmix data=data1; 
  class treatment block;
  model weight = treatment;
  random block;   
run;&lt;/PRE&gt;&lt;P&gt;By using the SAS OnDemand for Academics, the default decimal number of the output is 4, how to increase to 6. Thank you very much in advance!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 21:07:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746586#M80661</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T21:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746588#M80662</link>
      <description>Not sure if there's a way in the PROC. The usual workaround is to pipe the estimates to a table and control it there.&lt;BR /&gt;Adding the following line to your proc will save the estimates to a dataset.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;ods output parameterEstimates = want;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jun 2021 21:13:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746588#M80662</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-08T21:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746589#M80663</link>
      <description>It turned out this warning:&lt;BR /&gt;WARNING: Output 'parameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;BR /&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;BR /&gt;that the NOPRINT option is not used.</description>
      <pubDate>Tue, 08 Jun 2021 21:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746589#M80663</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T21:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746590#M80664</link>
      <description>Full code and log please. &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jun 2021 21:19:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746590#M80664</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-08T21:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746591#M80665</link>
      <description>code&lt;BR /&gt;data cecal_kingdom_taxonomy;&lt;BR /&gt;length treatment $20;&lt;BR /&gt;Infile "/home/u39233094/sasuser.v94/Thesis/CSV file/1-kingdom cecal taxonomy for SAS.csv" dlm="," firstobs=5;&lt;BR /&gt;input diet$ treatment$ block pen pig_number DNAsamcode$ unidentifiedR unidentifiedP bacteriaR bacteriaP eukaryotaR eukaryotaP totalR totalP; run;&lt;BR /&gt;Proc print data=cecal_kingdom_taxonomy;&lt;BR /&gt;run;&lt;BR /&gt;proc glimmix data=cecal_kingdom_taxonomy;&lt;BR /&gt;class treatment block;&lt;BR /&gt;model unidentifiedP = treatment;&lt;BR /&gt;random block;&lt;BR /&gt;lsmeans treatment/tdiff lines;&lt;BR /&gt;ods output parameterEstimates = want;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;log:&lt;BR /&gt;&lt;BR /&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;NOTE: ODS statements in the SAS Studio environment may disable some output features.&lt;BR /&gt;73&lt;BR /&gt;74 data cecal_kingdom_taxonomy;&lt;BR /&gt;75 length treatment $20;&lt;BR /&gt;76 Infile "/home/u39233094/sasuser.v94/Thesis/CSV file/1-kingdom cecal taxonomy for SAS.csv" dlm="," firstobs=5;&lt;BR /&gt;77 input diet$ treatment$ block pen pig_number DNAsamcode$ unidentifiedR unidentifiedP bacteriaR bacteriaP eukaryotaR&lt;BR /&gt;77 ! eukaryotaP totalR totalP;&lt;BR /&gt;78 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: The infile "/home/u39233094/sasuser.v94/Thesis/CSV file/1-kingdom cecal taxonomy for SAS.csv" is:&lt;BR /&gt;Filename=/home/u39233094/sasuser.v94/Thesis/CSV file/1-kingdom cecal taxonomy for SAS.csv,&lt;BR /&gt;Owner Name=u39233094,Group Name=oda,&lt;BR /&gt;Access Permission=-rw-r--r--,&lt;BR /&gt;Last Modified=03Jun2021:11:31:01,&lt;BR /&gt;File Size (bytes)=3921&lt;BR /&gt;&lt;BR /&gt;NOTE: 35 records were read from the infile "/home/u39233094/sasuser.v94/Thesis/CSV file/1-kingdom cecal taxonomy for SAS.csv".&lt;BR /&gt;The minimum record length was 99.&lt;BR /&gt;The maximum record length was 109.&lt;BR /&gt;NOTE: The data set WORK.CECAL_KINGDOM_TAXONOMY has 35 observations and 14 variables.&lt;BR /&gt;NOTE: DATA statement used (Total process time):&lt;BR /&gt;real time 0.00 seconds&lt;BR /&gt;user cpu time 0.00 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 790.53k&lt;BR /&gt;OS Memory 39336.00k&lt;BR /&gt;Timestamp 06/08/2021 09:22:05 PM&lt;BR /&gt;Step Count 132 Switch Count 2&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 94&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 19&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 264&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;79 Proc print data=cecal_kingdom_taxonomy;&lt;BR /&gt;80 run;&lt;BR /&gt;&lt;BR /&gt;NOTE: There were 35 observations read from the data set WORK.CECAL_KINGDOM_TAXONOMY.&lt;BR /&gt;NOTE: PROCEDURE PRINT used (Total process time):&lt;BR /&gt;real time 0.16 seconds&lt;BR /&gt;user cpu time 0.17 seconds&lt;BR /&gt;system cpu time 0.00 seconds&lt;BR /&gt;memory 3365.93k&lt;BR /&gt;OS Memory 39336.00k&lt;BR /&gt;Timestamp 06/08/2021 09:22:06 PM&lt;BR /&gt;Step Count 133 Switch Count 0&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 63&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 0&lt;BR /&gt;Involuntary Context Switches 0&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 48&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;81 proc glimmix data=cecal_kingdom_taxonomy;&lt;BR /&gt;82 class treatment block;&lt;BR /&gt;83 model unidentifiedP = treatment;&lt;BR /&gt;84 random block;&lt;BR /&gt;85 lsmeans treatment/tdiff lines;&lt;BR /&gt;86 ods output parameterEstimates = want;&lt;BR /&gt;87 run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;NOTE: Convergence criterion (GCONV=1E-8) satisfied.&lt;BR /&gt;WARNING: Output 'parameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;BR /&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;BR /&gt;that the NOPRINT option is not used.&lt;BR /&gt;NOTE: PROCEDURE GLIMMIX used (Total process time):&lt;BR /&gt;real time 0.12 seconds&lt;BR /&gt;user cpu time 0.12 seconds&lt;BR /&gt;system cpu time 0.01 seconds&lt;BR /&gt;memory 4969.46k&lt;BR /&gt;OS Memory 41476.00k&lt;BR /&gt;Timestamp 06/08/2021 09:22:06 PM&lt;BR /&gt;Step Count 134 Switch Count 13&lt;BR /&gt;Page Faults 0&lt;BR /&gt;Page Reclaims 900&lt;BR /&gt;Page Swaps 0&lt;BR /&gt;Voluntary Context Switches 76&lt;BR /&gt;Involuntary Context Switches 1&lt;BR /&gt;Block Input Operations 0&lt;BR /&gt;Block Output Operations 1632&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;88&lt;BR /&gt;89 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;BR /&gt;101</description>
      <pubDate>Tue, 08 Jun 2021 21:24:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746591#M80665</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T21:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746592#M80666</link>
      <description>&lt;P&gt;The ODS OUTPUT statement(s) should go either immediately prior to the proc or as part of the Procedure code and have to rerun the procedure with the option on such as:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods output parameterestimates= myparmdataset;&lt;BR /&gt;proc glimmix data=data1; 
  class treatment block;
  model weight = treatment;
  random block;   
run;&amp;nbsp;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 21:29:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746592#M80666</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-06-08T21:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746594#M80667</link>
      <description>Also got this warning&lt;BR /&gt;WARNING: Output 'parameterEstimates' was not created. Make sure that the output object name, label, or path is spelled correctly.&lt;BR /&gt;Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify&lt;BR /&gt;that the NOPRINT option is not used.</description>
      <pubDate>Tue, 08 Jun 2021 21:33:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746594#M80667</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T21:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746601#M80668</link>
      <description>&lt;P&gt;Add the solution option to your model statement to have the parameterEstimates displayed. But this means you actually want a different table most likely.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In that case, look for the table name of the table you actually want to save.&lt;/P&gt;
&lt;P&gt;Here's some instructions and explanations on how to capture output that is shown. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/" target="_blank"&gt;https://blogs.sas.com/content/sastraining/2017/03/31/capturing-output-from-any-procedure-with-an-ods-output-statement/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table names are documented here as well:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glimmix_details80.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glimmix_details80.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 21:51:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746601#M80668</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-08T21:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746602#M80669</link>
      <description>&lt;P&gt;When CLASS variables are present, the default behavior of PROC GLIMMIX is to NOT produce parameter estimates, and so no output data set &lt;FONT face="courier new,courier"&gt;parameterestimates&lt;/FONT&gt;. But, this option fixes the issue&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  model weight = treatment/solution;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which brings us to a philosophical discussion. SAS (and others) thinks that if you have a class variable, you want to compare means and not really fit a model. I happen to agree with that, for what it's worth (and no, SAS isn't paying me anything to say that). You apparently have the opposite opinion, you want to do the model fit with class variables, and not compare means. Of course, that's not wrong, and you are certainly entitled to fit the model instead of compare the means. But you might want to think about it more, and see if what you really need to know is the difference between the means.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 22:07:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746602#M80669</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-06-08T22:07:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746603#M80670</link>
      <description>Hi Reeza,&lt;BR /&gt;it works now, thank you so much!&lt;BR /&gt;&lt;BR /&gt;The code is&lt;BR /&gt;ods output LSMeans = myparmdataset;&lt;BR /&gt;proc glimmix data=data1;&lt;BR /&gt;class treatment block;&lt;BR /&gt;model weight = treatment;&lt;BR /&gt;random block;&lt;BR /&gt;lsmeans treatment/tdiff lines;&lt;BR /&gt;run;&lt;BR /&gt;proc print data=myparmdataset;&lt;BR /&gt;format estimate D8.6&lt;BR /&gt;stderr D8.6;&lt;BR /&gt;run;&lt;BR /&gt;</description>
      <pubDate>Tue, 08 Jun 2021 22:09:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746603#M80670</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T22:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746604#M80671</link>
      <description>&lt;P&gt;Thank you all for helping me out!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 22:12:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746604#M80671</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T22:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to increase your estimate and standard error output to 6 decimals under glimmix procedure</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746612#M80672</link>
      <description>the ods statement as part of the glimmix procedure also works.</description>
      <pubDate>Tue, 08 Jun 2021 22:25:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-increase-your-estimate-and-standard-error-output-to-6/m-p/746612#M80672</guid>
      <dc:creator>kellychan84</dc:creator>
      <dc:date>2021-06-08T22:25:36Z</dc:date>
    </item>
  </channel>
</rss>

