<?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: Is there a way to output type III pvalues and bonf adjusted p values from PROC GLM into dataset? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780402#M248667</link>
    <description>Search "bonferroni" in this URL, you could find something.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/30/333.html" target="_blank"&gt;https://support.sas.com/kb/30/333.html&lt;/A&gt;</description>
    <pubDate>Tue, 16 Nov 2021 12:13:28 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-11-16T12:13:28Z</dc:date>
    <item>
      <title>Is there a way to output type III pvalues and bonf adjusted p values from PROC GLM into dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780307#M248625</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to program a table that includes type 3 p values and bonferroni adjusted p values from PROC GLM? Is there a way to do that?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2021 21:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780307#M248625</guid>
      <dc:creator>Hello_there</dc:creator>
      <dc:date>2021-11-15T21:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to output type III pvalues and bonf adjusted p values from PROC GLM into dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780310#M248626</link>
      <description>&lt;P&gt;Any of the output tables can be sent to a data set with the ODS OUTPUT statement. You need to know the name of the table created by the procedure and use&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output tablename=nameofdesireddataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find the names of the tables generated by the procedure in the details tab of the online documentation such as here:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_details70.htm" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_details70.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or run your procedure code with the option ODS Trace on such as&lt;/P&gt;
&lt;PRE&gt;ods trace on;

proc glm data=yourdata;
  &amp;lt;glm statements&amp;gt;
run;

ods trace off;&lt;/PRE&gt;
&lt;P&gt;The LOG will show the names of all the tables generated so you can use them in the Ods output.&lt;/P&gt;</description>
      <pubDate>Mon, 15 Nov 2021 22:06:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780310#M248626</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-11-15T22:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to output type III pvalues and bonf adjusted p values from PROC GLM into dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780311#M248627</link>
      <description>&lt;P&gt;You can output the Type III p-values to a SAS data set, using ODS OUTPUT, and then program additional calculations as you see fit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The command you should insert in PROC GLM is&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;   ods output modelanova=modelanova;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 15 Nov 2021 22:13:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780311#M248627</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-11-15T22:13:22Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to output type III pvalues and bonf adjusted p values from PROC GLM into dataset?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780402#M248667</link>
      <description>Search "bonferroni" in this URL, you could find something.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/30/333.html" target="_blank"&gt;https://support.sas.com/kb/30/333.html&lt;/A&gt;</description>
      <pubDate>Tue, 16 Nov 2021 12:13:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Is-there-a-way-to-output-type-III-pvalues-and-bonf-adjusted-p/m-p/780402#M248667</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-11-16T12:13:28Z</dc:date>
    </item>
  </channel>
</rss>

