<?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: PROC MCMC ods output PostSummaries NOT CREATED in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270589#M15910</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;Belén,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As ballardw has alluded to, you probably didn't obtain that summary table in the displayed output either.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The error message includes an important hint: "verify that the appropriate procedure options are used to produce the requested output object." To do so, you look up your desired ODS table name (here: PostSummaries) in the table &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_details109.htm" target="_blank"&gt;ODS Table Names&lt;/A&gt; of the respective procedure. There you see in column "Statement or Option" that PostSummaries is requested by the option STATISTICS=SUMMARY (of the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_syntax01.htm" target="_blank"&gt;PROC MCMC statement&lt;/A&gt;). Since you didn't specify this option, the ODS table was not produced.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In general, you find the link to the list of ODS table names under the "Details" tab in the procedure documentation, mostly close to the bottom of the drop down list.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 15 May 2016 15:34:01 GMT</pubDate>
    <dc:creator>FreelanceReinh</dc:creator>
    <dc:date>2016-05-15T15:34:01Z</dc:date>
    <item>
      <title>PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270303#M15877</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;I am trying to write &lt;STRONG&gt;ods output PostSummaries&lt;/STRONG&gt; in PROC MCMC, but I get the same error on and on&lt;STRONG&gt; (copied below)&lt;/STRONG&gt;, eventhough there is not any NOPRINT option. I've already tried to add a 'quit' before the &lt;STRONG&gt;ods&lt;/STRONG&gt; command and write the &lt;STRONG&gt;ods&lt;/STRONG&gt; commans at the begining of the PROC MCMC statement but it doesn't work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;ERROR I GET:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output 'PostSummaries' was not created.&amp;nbsp; Make sure that the output object name, label,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; or path is spelled correctly.&amp;nbsp; Also, verify that the appropriate procedure options are used&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to produce the requested output object.&amp;nbsp; For example, verify that the NOPRINT option is not&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; used.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;PART OF THE CODE:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;PROC MCMC&amp;nbsp;data=Libname.data&amp;nbsp;seed=17 nmc=100000;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;parm betas COR {.10 .10 .05};&lt;BR /&gt;prior COR ~ mvn(mu3, Sig_c);&lt;BR /&gt;prior betas ~ mvn(mu2, Sigma2);&lt;BR /&gt;model data ~ mvn(betas, Sig_Def);&lt;BR /&gt;&lt;STRONG&gt;ods output PostSummaries=parameters;&lt;/STRONG&gt;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestion will be highly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Belén&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 09:27:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270303#M15877</guid>
      <dc:creator>belen222</dc:creator>
      <dc:date>2016-05-13T09:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270411#M15897</link>
      <description>&lt;P&gt;If you run the code without the ODS output do you get parameters in the displayed output?&lt;/P&gt;</description>
      <pubDate>Fri, 13 May 2016 17:14:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270411#M15897</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-05-13T17:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270589#M15910</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;SPAN&gt;Belén,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As ballardw has alluded to, you probably didn't obtain that summary table in the displayed output either.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The error message includes an important hint: "verify that the appropriate procedure options are used to produce the requested output object." To do so, you look up your desired ODS table name (here: PostSummaries) in the table &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_details109.htm" target="_blank"&gt;ODS Table Names&lt;/A&gt; of the respective procedure. There you see in column "Statement or Option" that PostSummaries is requested by the option STATISTICS=SUMMARY (of the &lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_syntax01.htm" target="_blank"&gt;PROC MCMC statement&lt;/A&gt;). Since you didn't specify this option, the ODS table was not produced.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;In general, you find the link to the list of ODS table names under the "Details" tab in the procedure documentation, mostly close to the bottom of the drop down list.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 May 2016 15:34:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270589#M15910</guid>
      <dc:creator>FreelanceReinh</dc:creator>
      <dc:date>2016-05-15T15:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270591#M15911</link>
      <description>&lt;P&gt;Hi:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; If you look at the documentation for PROC MCMC, it seems to indicate that you only get the PostSummaries object created if you ALSO use the option STATISTICS=SUMMARY, as described on this documentation page:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_details109.htm&amp;nbsp;" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_mcmc_details109.htm&amp;nbsp;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; You can always use ODS TRACE ON before your PROC MCMC to see what output objects are created, but I think it's a matter of using the right option to turn on the creation of the output object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cynthia&lt;/P&gt;</description>
      <pubDate>Sun, 15 May 2016 16:39:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270591#M15911</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-05-15T16:39:12Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270892#M15914</link>
      <description>&lt;P&gt;Thank you very very much to everyone!!! In fact, finally it was a matter of adding "STATISTICS=SUMMARY" in the first line of the command, so now I can save the results in a nother dataset!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Belén&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2016 07:20:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270892#M15914</guid>
      <dc:creator>belen222</dc:creator>
      <dc:date>2016-05-17T07:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC ods output PostSummaries NOT CREATED</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270895#M15915</link>
      <description>&lt;P&gt;Thannk you very much! You were right &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 17 May 2016 07:49:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/PROC-MCMC-ods-output-PostSummaries-NOT-CREATED/m-p/270895#M15915</guid>
      <dc:creator>belen222</dc:creator>
      <dc:date>2016-05-17T07:49:04Z</dc:date>
    </item>
  </channel>
</rss>

