<?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: Deciding the significant figures in output in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325781#M17199</link>
    <description>&lt;P&gt;The procedure stored the p-value as a decimal value such as 0.0001234567. However, in the ODS table, the p-value is displayed by using the PVALUEw. format. &amp;nbsp;To learn about the PVALUEw. format, see &lt;A href="http://blogs.sas.com/content/iml/2016/08/15/formats-p-values-odds-ratios-sas.html" target="_self"&gt;"Formats for p-values and odds ratios in SAS."&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you would like to use a different format (or no format at all), you have two options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first option is to use ODS OUTPUT to write a table to a data set. &amp;nbsp;If you don't know the name of the table, read &lt;A href="http://blogs.sas.com/content/iml/2015/09/08/ods-table-names.html" target="_self"&gt;"Find the ODS table names produced by any procedure."&lt;/A&gt;&amp;nbsp;Then USE PROC PRINT and the FORMAT statement to display the statistics in the format you prefer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;For example, the following captures and displays the ModelANOVA table in PROC GLM:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc GLM DATA=sashelp.class;
CLASS age;
Model height=age;
ods output modelANOVA=ANOVA;
Run;

proc print data=ANOVA;
format probF PVALUE8.6;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The second option is if you want to permanently change the way the output appears every time that you run SAS. To do that, you can copy and modify the ODS template for the table.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Jan 2017 19:36:17 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2017-01-18T19:36:17Z</dc:date>
    <item>
      <title>Deciding the significant figures in output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325742#M17196</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;When I ran a data using SAS production environment, is there a way I could decide how many significant figure I want to get in my output?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Samrita&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 17:28:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325742#M17196</guid>
      <dc:creator>thapasamrita0</dc:creator>
      <dc:date>2017-01-18T17:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Deciding the significant figures in output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325755#M17197</link>
      <description>&lt;P&gt;You should be able to decide anything you want. But this question is very vague. You might provide more details of what you are doing and the output requirements.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 18:17:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325755#M17197</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2017-01-18T18:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Deciding the significant figures in output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325774#M17198</link>
      <description>&lt;P&gt;Sorry for not being clear about my question. Can I decide on the number of decimal point for the p-value that I get using this test?&amp;nbsp; I am looking for a decimal point of 6 for P-VALUSE for ABS_resid mean.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;roc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;GLM&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Statistic;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;CLASS&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Group;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Model&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; BW=Group;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;Output&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;OUT&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=lEVENE_resid &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;R&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=resid;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;Run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;GLM&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Statistic; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;CLASS&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Group; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;MODEL&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; BW=Group; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;OUTPUT&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;OUT&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Levene_resid &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;R&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=resid; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;DATA&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Lev_resid; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;SET&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; Levene_resid; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;ABS_resid = ABS(resid);&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;PROC&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;GLM&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;DATA&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=Lev_resid; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;CLASS&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; group; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;MODEL&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; ABS_resid=Group; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;RUN&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Samrita&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 19:19:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325774#M17198</guid>
      <dc:creator>thapasamrita0</dc:creator>
      <dc:date>2017-01-18T19:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Deciding the significant figures in output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325781#M17199</link>
      <description>&lt;P&gt;The procedure stored the p-value as a decimal value such as 0.0001234567. However, in the ODS table, the p-value is displayed by using the PVALUEw. format. &amp;nbsp;To learn about the PVALUEw. format, see &lt;A href="http://blogs.sas.com/content/iml/2016/08/15/formats-p-values-odds-ratios-sas.html" target="_self"&gt;"Formats for p-values and odds ratios in SAS."&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you would like to use a different format (or no format at all), you have two options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first option is to use ODS OUTPUT to write a table to a data set. &amp;nbsp;If you don't know the name of the table, read &lt;A href="http://blogs.sas.com/content/iml/2015/09/08/ods-table-names.html" target="_self"&gt;"Find the ODS table names produced by any procedure."&lt;/A&gt;&amp;nbsp;Then USE PROC PRINT and the FORMAT statement to display the statistics in the format you prefer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;For example, the following captures and displays the ModelANOVA table in PROC GLM:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc GLM DATA=sashelp.class;
CLASS age;
Model height=age;
ods output modelANOVA=ANOVA;
Run;

proc print data=ANOVA;
format probF PVALUE8.6;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The second option is if you want to permanently change the way the output appears every time that you run SAS. To do that, you can copy and modify the ODS template for the table.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 19:36:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325781#M17199</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-01-18T19:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Deciding the significant figures in output</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325803#M17200</link>
      <description>&lt;P&gt;Thank you very much. Your answer was very helpful.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Jan 2017 20:43:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Deciding-the-significant-figures-in-output/m-p/325803#M17200</guid>
      <dc:creator>thapasamrita0</dc:creator>
      <dc:date>2017-01-18T20:43:03Z</dc:date>
    </item>
  </channel>
</rss>

