<?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: Trouble with ODS Output PostSumInt in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783485#M249820</link>
    <description>&lt;P&gt;I have a follow-up issue. I'm now using the ODS Table Name PostIntervals&amp;nbsp;since this option outputs credible intervals for 12.3. Below is my model code, but I'm still getting an error message (see below).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics off; * suppress ods graphics for a more efficient simulation;&lt;BR /&gt;ods exclude all; * suppress ods output for a more efficient simulation;&lt;BR /&gt;ods output Corr = s10_100.mycorr&lt;BR /&gt;Cov = s10_100.mycov&lt;BR /&gt;DIC = s10_100.mydic&lt;BR /&gt;PostSummaries = s10_100.myparams&lt;BR /&gt;Geweke = s10_100.mygeweke&lt;BR /&gt;PostIntervals = s10_100.intervals; * output ods tables of interest to datasets;&lt;BR /&gt;PROC MCMC&lt;BR /&gt;data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 STATISTICS = summary DIAGNOSTICS = GEWEKE STATS = CORR STATS = COV DIC;&lt;BR /&gt;*data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 NTHREADS=4 DIAGNOSTICS = AUTOCORR PROPCOV = method(ITPRINT) STATS = CORR STATS = COV DIC;&lt;/P&gt;&lt;P&gt;ARRAY location_scale_mean[2] (0,0);&lt;BR /&gt;ARRAY location_scale_cov[2,2] (1,0,0,1);&lt;BR /&gt;ARRAY location_scale_rf[2] sub_1 sub_2;&lt;/P&gt;&lt;P&gt;PARMS b0=0.02 b1=0.22 b2=-0.07 b3=0.21 b4=0.13&lt;BR /&gt;tau0=0.17 tau1=0.11 tau2=0.13 tau3=0.21 tau4=-0.15&lt;BR /&gt;lp0=0.25 lp1=0.12 lp2=-1.08&lt;BR /&gt;cov=-0.09 ln_varScale=0.33;&lt;/P&gt;&lt;P&gt;BY rep_n;&lt;BR /&gt;WHERE rep_n &amp;lt; 4;&lt;/P&gt;&lt;P&gt;PRIOR b: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR tau: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR lp: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR cov: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR ln_varScale~NORMAL(0,VAR=1000);&lt;/P&gt;&lt;P&gt;varBS = EXP(lp0 + W1_c*lp1 + W2_b*lp2);&lt;BR /&gt;varScale = EXP(ln_varScale);&lt;/P&gt;&lt;P&gt;L11=SQRT(varBS);&lt;BR /&gt;L21=cov/L11;&lt;BR /&gt;L22=SQRT(varScale-L21**2);&lt;/P&gt;&lt;P&gt;mu = b0 + b1*X1_c + b2*X2_b + b3*W1_c + b4*W2_b + L11*sub_1;&lt;BR /&gt;varWS = EXP(tau0 + X1_c*tau1 + X2_b*tau2 + W1_c*tau3 + W2_b*tau4 + L21*sub_1 + L22*sub_2);&lt;/P&gt;&lt;P&gt;RANDOM location_scale_rf ~ mvn(location_scale_mean,location_scale_cov) SUBJECT=subj;&lt;BR /&gt;MODEL y ~ NORMAL(mu,var = varWS);&lt;/P&gt;&lt;P&gt;RUN;&lt;BR /&gt;ods output close;&lt;BR /&gt;ods exclude none;&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;&lt;P&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=1&lt;BR /&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=2&lt;BR /&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=3&lt;BR /&gt;NOTE: The data set S10_100.MYGEWEKE has 45 observations and 4 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYPARAMS has 45 observations and 8 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYDIC has 12 observations and 3 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCOV has 45 observations and 17 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCORR has 45 observations and 17 variables.&lt;BR /&gt;WARNING: Output 'PostIntervals' was not created. Make sure that the output object name, label, or&lt;BR /&gt;path is spelled correctly. Also, verify that the appropriate procedure options are used to&lt;BR /&gt;produce the requested output object. For example, verify that the NOPRINT option is not&lt;BR /&gt;used.&lt;BR /&gt;NOTE: PROCEDURE MCMC used (Total process time):&lt;BR /&gt;real time 4:24.27&lt;BR /&gt;cpu time 4:23.96&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>Wed, 01 Dec 2021 23:25:26 GMT</pubDate>
    <dc:creator>mcraft</dc:creator>
    <dc:date>2021-12-01T23:25:26Z</dc:date>
    <item>
      <title>Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783445#M249797</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm trying to fit a model using PROC MCMC and output credible intervals for each parameter. I add the option ods output PostSumInt = intervals, which should output by default. Below is the code I've specified for fitting the model.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods output Corr = mycorr&lt;BR /&gt;Cov = mycov&lt;BR /&gt;DIC = mydic&lt;BR /&gt;PostSummaries = myparams&lt;BR /&gt;Geweke = mygeweke&lt;BR /&gt;PostSumInt = intervals; * output ods tables of interest to datasets;&lt;BR /&gt;PROC MCMC&lt;BR /&gt;data = data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 STATISTICS = summary DIAGNOSTICS = GEWEKE STATS = CORR STATS = COV DIC;&lt;/P&gt;&lt;P&gt;ARRAY location_scale_mean[2] (0,0);&lt;BR /&gt;ARRAY location_scale_cov[2,2] (1,0,0,1);&lt;BR /&gt;ARRAY location_scale_rf[2] sub_1 sub_2;&lt;/P&gt;&lt;P&gt;PARMS b0=0.02 b1=0.22 b2=-0.07 b3=0.21 b4=0.13&lt;BR /&gt;tau0=0.17 tau1=0.11 tau2=0.13 tau3=0.21 tau4=-0.15&lt;BR /&gt;lp0=0.25 lp1=0.12 lp2=-1.08&lt;BR /&gt;cov=-0.09 ln_varScale=0.33;&lt;/P&gt;&lt;P&gt;BY rep_n;&lt;BR /&gt;WHERE rep_n &amp;lt; 4;&lt;/P&gt;&lt;P&gt;PRIOR b: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR tau: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR lp: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR cov: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR ln_varScale~NORMAL(0,VAR=1000);&lt;/P&gt;&lt;P&gt;varBS = EXP(lp0 + W1_c*lp1 + W2_b*lp2);&lt;BR /&gt;varScale = EXP(ln_varScale);&lt;/P&gt;&lt;P&gt;L11=SQRT(varBS);&lt;BR /&gt;L21=cov/L11;&lt;BR /&gt;L22=SQRT(varScale-L21**2);&lt;/P&gt;&lt;P&gt;mu = b0 + b1*X1_c + b2*X2_b + b3*W1_c + b4*W2_b + L11*sub_1;&lt;BR /&gt;varWS = EXP(tau0 + X1_c*tau1 + X2_b*tau2 + W1_c*tau3 + W2_b*tau4 + L21*sub_1 + L22*sub_2);&lt;/P&gt;&lt;P&gt;RANDOM location_scale_rf ~ mvn(location_scale_mean,location_scale_cov) SUBJECT=subj;&lt;BR /&gt;MODEL y ~ NORMAL(mu,var = varWS);&lt;/P&gt;&lt;P&gt;RUN;&lt;BR /&gt;ods output close;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;After running this model, I get an error message that says:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;WARNING: Output 'PostSumInt' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/DIV&gt;&lt;DIV class=""&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/DIV&gt;&lt;DIV class=""&gt;the NOPRINT option is not used.&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Any ideas on why this output was not created? I'm pretty sure it's spelled correctly and I can't find any required options for producing this output.&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Thanks!&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;Madeline&lt;/DIV&gt;</description>
      <pubDate>Wed, 01 Dec 2021 18:54:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783445#M249797</guid>
      <dc:creator>mcraft</dc:creator>
      <dc:date>2021-12-01T18:54:17Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783447#M249799</link>
      <description>&lt;P&gt;1. Can you please post the full log?&lt;/P&gt;
&lt;P&gt;2. What version of SAS/STAT do you have? You can verify that with:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc product_status;run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;LI-SPOILER&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271531"&gt;@mcraft&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I'm trying to fit a model using PROC MCMC and output credible intervals for each parameter. I add the option ods output PostSumInt = intervals, which should output by default. Below is the code I've specified for fitting the model.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ods output Corr = mycorr&lt;BR /&gt;Cov = mycov&lt;BR /&gt;DIC = mydic&lt;BR /&gt;PostSummaries = myparams&lt;BR /&gt;Geweke = mygeweke&lt;BR /&gt;PostSumInt = intervals; * output ods tables of interest to datasets;&lt;BR /&gt;PROC MCMC&lt;BR /&gt;data = data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 STATISTICS = summary DIAGNOSTICS = GEWEKE STATS = CORR STATS = COV DIC;&lt;/P&gt;
&lt;P&gt;ARRAY location_scale_mean[2] (0,0);&lt;BR /&gt;ARRAY location_scale_cov[2,2] (1,0,0,1);&lt;BR /&gt;ARRAY location_scale_rf[2] sub_1 sub_2;&lt;/P&gt;
&lt;P&gt;PARMS b0=0.02 b1=0.22 b2=-0.07 b3=0.21 b4=0.13&lt;BR /&gt;tau0=0.17 tau1=0.11 tau2=0.13 tau3=0.21 tau4=-0.15&lt;BR /&gt;lp0=0.25 lp1=0.12 lp2=-1.08&lt;BR /&gt;cov=-0.09 ln_varScale=0.33;&lt;/P&gt;
&lt;P&gt;BY rep_n;&lt;BR /&gt;WHERE rep_n &amp;lt; 4;&lt;/P&gt;
&lt;P&gt;PRIOR b: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR tau: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR lp: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR cov: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR ln_varScale~NORMAL(0,VAR=1000);&lt;/P&gt;
&lt;P&gt;varBS = EXP(lp0 + W1_c*lp1 + W2_b*lp2);&lt;BR /&gt;varScale = EXP(ln_varScale);&lt;/P&gt;
&lt;P&gt;L11=SQRT(varBS);&lt;BR /&gt;L21=cov/L11;&lt;BR /&gt;L22=SQRT(varScale-L21**2);&lt;/P&gt;
&lt;P&gt;mu = b0 + b1*X1_c + b2*X2_b + b3*W1_c + b4*W2_b + L11*sub_1;&lt;BR /&gt;varWS = EXP(tau0 + X1_c*tau1 + X2_b*tau2 + W1_c*tau3 + W2_b*tau4 + L21*sub_1 + L22*sub_2);&lt;/P&gt;
&lt;P&gt;RANDOM location_scale_rf ~ mvn(location_scale_mean,location_scale_cov) SUBJECT=subj;&lt;BR /&gt;MODEL y ~ NORMAL(mu,var = varWS);&lt;/P&gt;
&lt;P&gt;RUN;&lt;BR /&gt;ods output close;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After running this model, I get an error message that says:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class=""&gt;WARNING: Output 'PostSumInt' was not created. Make sure that the output object name, label, or path is spelled correctly. Also,&lt;/DIV&gt;
&lt;DIV class=""&gt;verify that the appropriate procedure options are used to produce the requested output object. For example, verify that&lt;/DIV&gt;
&lt;DIV class=""&gt;the NOPRINT option is not used.&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Any ideas on why this output was not created? I'm pretty sure it's spelled correctly and I can't find any required options for producing this output.&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Thanks!&lt;/DIV&gt;
&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class=""&gt;Madeline&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/LI-SPOILER&gt;</description>
      <pubDate>Wed, 01 Dec 2021 19:03:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783447#M249799</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-01T19:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783451#M249801</link>
      <description>&lt;P&gt;1.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;1 libname s10_100 "C:/Users/mcraft/Desktop/PROC MCMC Simulations/data10_100/output";&lt;BR /&gt;NOTE: Libref S10_100 was successfully assigned as follows:&lt;BR /&gt;Engine: V9&lt;BR /&gt;Physical Name: C:\Users\mcraft\Desktop\PROC MCMC Simulations\data10_100\output&lt;/P&gt;&lt;P&gt;2 ods graphics off; * suppress ods graphics for a more efficient simulation;&lt;BR /&gt;3 ods exclude all; * suppress ods output for a more efficient simulation;&lt;BR /&gt;4 ods output Corr = s10_100.mycorr&lt;BR /&gt;NOTE: Writing HTML Body file: sashtml.htm&lt;BR /&gt;5 Cov = s10_100.mycov&lt;BR /&gt;6 DIC = s10_100.mydic&lt;BR /&gt;7 PostSummaries = s10_100.myparams&lt;BR /&gt;8 Geweke = s10_100.mygeweke&lt;BR /&gt;9 PostSumInt = s10_100.intervals; * output ods tables of interest to datasets;&lt;BR /&gt;10 PROC MCMC&lt;BR /&gt;11 data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 STATISTICS = summary&lt;BR /&gt;11 ! DIAGNOSTICS = GEWEKE STATS = CORR STATS = COV DIC;&lt;BR /&gt;12 *data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 NTHREADS=4 DIAGNOSTICS =&lt;BR /&gt;12 ! AUTOCORR PROPCOV = method(ITPRINT) STATS = CORR STATS = COV DIC;&lt;BR /&gt;13&lt;BR /&gt;14 ARRAY location_scale_mean[2] (0,0);&lt;BR /&gt;15 ARRAY location_scale_cov[2,2] (1,0,0,1);&lt;BR /&gt;16 ARRAY location_scale_rf[2] sub_1 sub_2;&lt;BR /&gt;17&lt;BR /&gt;18 PARMS b0=0.02 b1=0.22 b2=-0.07 b3=0.21 b4=0.13&lt;BR /&gt;19 tau0=0.17 tau1=0.11 tau2=0.13 tau3=0.21 tau4=-0.15&lt;BR /&gt;20 lp0=0.25 lp1=0.12 lp2=-1.08&lt;BR /&gt;21 cov=-0.09 ln_varScale=0.33;&lt;BR /&gt;22&lt;BR /&gt;23 BY rep_n;&lt;BR /&gt;24 WHERE rep_n = 1;&lt;BR /&gt;25&lt;BR /&gt;26 PRIOR b: ~NORMAL (0, VAR=1000);&lt;BR /&gt;27 PRIOR tau: ~NORMAL (0, VAR=1000);&lt;BR /&gt;28 PRIOR lp: ~NORMAL (0, VAR=1000);&lt;BR /&gt;29 PRIOR cov: ~NORMAL (0, VAR=1000);&lt;BR /&gt;30 PRIOR ln_varScale~NORMAL(0,VAR=1000);&lt;BR /&gt;31&lt;BR /&gt;32 varBS = EXP(lp0 + W1_c*lp1 + W2_b*lp2);&lt;BR /&gt;33 varScale = EXP(ln_varScale);&lt;BR /&gt;34&lt;BR /&gt;35 L11=SQRT(varBS);&lt;BR /&gt;36 L21=cov/L11;&lt;BR /&gt;37 L22=SQRT(varScale-L21**2);&lt;BR /&gt;38&lt;BR /&gt;39 mu = b0 + b1*X1_c + b2*X2_b + b3*W1_c + b4*W2_b + L11*sub_1;&lt;BR /&gt;40 varWS = EXP(tau0 + X1_c*tau1 + X2_b*tau2 + W1_c*tau3 + W2_b*tau4 + L21*sub_1 + L22*sub_2);&lt;BR /&gt;41&lt;BR /&gt;42 RANDOM location_scale_rf ~ mvn(location_scale_mean,location_scale_cov) SUBJECT=subj;&lt;BR /&gt;43 MODEL y ~ NORMAL(mu,var = varWS);&lt;BR /&gt;44&lt;BR /&gt;45 RUN;&lt;/P&gt;&lt;P&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=1&lt;BR /&gt;NOTE: The data set S10_100.MYGEWEKE has 15 observations and 4 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYPARAMS has 15 observations and 8 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYDIC has 4 observations and 3 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCOV has 15 observations and 17 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCORR has 15 observations and 17 variables.&lt;BR /&gt;WARNING: Output 'PostSumInt' was not created. Make sure that the output object name, label, or path&lt;BR /&gt;is spelled correctly. Also, verify that the appropriate procedure options are used to&lt;BR /&gt;produce the requested output object. For example, verify that the NOPRINT option is not&lt;BR /&gt;used.&lt;BR /&gt;NOTE: PROCEDURE MCMC used (Total process time):&lt;BR /&gt;real time 1:28.96&lt;BR /&gt;cpu time 1:28.48&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;46 ods output close;&lt;BR /&gt;47 ods exclude none;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;48 proc product_status;run;&lt;/P&gt;&lt;P&gt;For Base SAS Software ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;Image version information: 9.04.01M0P061913&lt;BR /&gt;For SAS/STAT ...&lt;BR /&gt;Custom version information: 12.3 (maintenance)&lt;BR /&gt;For SAS/GRAPH ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ETS ...&lt;BR /&gt;Custom version information: 12.3 (maintenance)&lt;BR /&gt;For SAS/FSP ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/OR ...&lt;BR /&gt;Custom version information: 12.3 (maintenance)&lt;BR /&gt;For SAS/AF ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/IML ...&lt;BR /&gt;Custom version information: 12.3 (maintenance)&lt;BR /&gt;For SAS/QC ...&lt;BR /&gt;Custom version information: 12.3 (maintenance)&lt;BR /&gt;For SAS/SHARE ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ASSIST ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/CONNECT ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/TOOLKIT ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/EIS ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/GIS ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to Netezza ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS Enterprise Miner ...&lt;BR /&gt;Custom version information: 12.3&lt;BR /&gt;For SAS/ACCESS to Vertica ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS to Postgres ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/IntrNet ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS Integration Technologies ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS Text Miner ...&lt;BR /&gt;Custom version information: 12.3&lt;BR /&gt;For SAS/ACCESS to SAP HANA ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;Image version information: 9.04.01M0P071013&lt;BR /&gt;For SAS/Genetics ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to DB2 ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to Oracle ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to Sybase ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to PC Files ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to ODBC ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to OLE DB ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to Teradata ...&lt;BR /&gt;Custom version information: 9.4&lt;BR /&gt;For SAS/ACCESS Interface to MySQL ...&lt;BR /&gt;Custom version information: 9.4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 19:13:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783451#M249801</guid>
      <dc:creator>mcraft</dc:creator>
      <dc:date>2021-12-01T19:13:05Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783458#M249807</link>
      <description>You're using an old version of SAS/STAT, the current version is 15, you're on 12.3.&lt;BR /&gt;The 12.3 documentation doesn't have a PostSumInt table listed, would any of the other options get you there? &lt;BR /&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/66103/HTML/default/viewer.htm#statug_mcmc_details103.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/66103/HTML/default/viewer.htm#statug_mcmc_details103.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;It looks like this isn't a feature in your current version &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;</description>
      <pubDate>Wed, 01 Dec 2021 20:03:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783458#M249807</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-01T20:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783470#M249812</link>
      <description>&lt;P&gt;Thank you so much! I will see if I can get it updated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Dec 2021 21:56:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783470#M249812</guid>
      <dc:creator>mcraft</dc:creator>
      <dc:date>2021-12-01T21:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783471#M249813</link>
      <description>It looks like you're running an 'old' version, 9.4M0 which was released in 2013 &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2013/08/02/how-old-is-your-version-of-sas-release-dates-for-sas-software.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2013/08/02/how-old-is-your-version-of-sas-release-dates-for-sas-software.html&lt;/A&gt;</description>
      <pubDate>Wed, 01 Dec 2021 22:01:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783471#M249813</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-01T22:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783485#M249820</link>
      <description>&lt;P&gt;I have a follow-up issue. I'm now using the ODS Table Name PostIntervals&amp;nbsp;since this option outputs credible intervals for 12.3. Below is my model code, but I'm still getting an error message (see below).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ods graphics off; * suppress ods graphics for a more efficient simulation;&lt;BR /&gt;ods exclude all; * suppress ods output for a more efficient simulation;&lt;BR /&gt;ods output Corr = s10_100.mycorr&lt;BR /&gt;Cov = s10_100.mycov&lt;BR /&gt;DIC = s10_100.mydic&lt;BR /&gt;PostSummaries = s10_100.myparams&lt;BR /&gt;Geweke = s10_100.mygeweke&lt;BR /&gt;PostIntervals = s10_100.intervals; * output ods tables of interest to datasets;&lt;BR /&gt;PROC MCMC&lt;BR /&gt;data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 STATISTICS = summary DIAGNOSTICS = GEWEKE STATS = CORR STATS = COV DIC;&lt;BR /&gt;*data = s10_100.data SEED=9879 NMC=100000 NBI=500 MAXTUNE=50 THIN=25 NTHREADS=4 DIAGNOSTICS = AUTOCORR PROPCOV = method(ITPRINT) STATS = CORR STATS = COV DIC;&lt;/P&gt;&lt;P&gt;ARRAY location_scale_mean[2] (0,0);&lt;BR /&gt;ARRAY location_scale_cov[2,2] (1,0,0,1);&lt;BR /&gt;ARRAY location_scale_rf[2] sub_1 sub_2;&lt;/P&gt;&lt;P&gt;PARMS b0=0.02 b1=0.22 b2=-0.07 b3=0.21 b4=0.13&lt;BR /&gt;tau0=0.17 tau1=0.11 tau2=0.13 tau3=0.21 tau4=-0.15&lt;BR /&gt;lp0=0.25 lp1=0.12 lp2=-1.08&lt;BR /&gt;cov=-0.09 ln_varScale=0.33;&lt;/P&gt;&lt;P&gt;BY rep_n;&lt;BR /&gt;WHERE rep_n &amp;lt; 4;&lt;/P&gt;&lt;P&gt;PRIOR b: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR tau: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR lp: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR cov: ~NORMAL (0, VAR=1000);&lt;BR /&gt;PRIOR ln_varScale~NORMAL(0,VAR=1000);&lt;/P&gt;&lt;P&gt;varBS = EXP(lp0 + W1_c*lp1 + W2_b*lp2);&lt;BR /&gt;varScale = EXP(ln_varScale);&lt;/P&gt;&lt;P&gt;L11=SQRT(varBS);&lt;BR /&gt;L21=cov/L11;&lt;BR /&gt;L22=SQRT(varScale-L21**2);&lt;/P&gt;&lt;P&gt;mu = b0 + b1*X1_c + b2*X2_b + b3*W1_c + b4*W2_b + L11*sub_1;&lt;BR /&gt;varWS = EXP(tau0 + X1_c*tau1 + X2_b*tau2 + W1_c*tau3 + W2_b*tau4 + L21*sub_1 + L22*sub_2);&lt;/P&gt;&lt;P&gt;RANDOM location_scale_rf ~ mvn(location_scale_mean,location_scale_cov) SUBJECT=subj;&lt;BR /&gt;MODEL y ~ NORMAL(mu,var = varWS);&lt;/P&gt;&lt;P&gt;RUN;&lt;BR /&gt;ods output close;&lt;BR /&gt;ods exclude none;&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;&lt;P&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=1&lt;BR /&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=2&lt;BR /&gt;NOTE: Tuning the proposal distribution.&lt;BR /&gt;NOTE: Generating the burn-in samples.&lt;BR /&gt;NOTE: Beginning sample generation.&lt;BR /&gt;NOTE: The above message was for the following BY group:&lt;BR /&gt;rep_n=3&lt;BR /&gt;NOTE: The data set S10_100.MYGEWEKE has 45 observations and 4 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYPARAMS has 45 observations and 8 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYDIC has 12 observations and 3 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCOV has 45 observations and 17 variables.&lt;BR /&gt;NOTE: The data set S10_100.MYCORR has 45 observations and 17 variables.&lt;BR /&gt;WARNING: Output 'PostIntervals' was not created. Make sure that the output object name, label, or&lt;BR /&gt;path is spelled correctly. Also, verify that the appropriate procedure options are used to&lt;BR /&gt;produce the requested output object. For example, verify that the NOPRINT option is not&lt;BR /&gt;used.&lt;BR /&gt;NOTE: PROCEDURE MCMC used (Total process time):&lt;BR /&gt;real time 4:24.27&lt;BR /&gt;cpu time 4:23.96&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>Wed, 01 Dec 2021 23:25:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783485#M249820</guid>
      <dc:creator>mcraft</dc:creator>
      <dc:date>2021-12-01T23:25:26Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783489#M249822</link>
      <description>Try moving your ODS OUTPUT statement to within the PROC but I don't see anything that should cause that issue. &lt;BR /&gt;Given the version you'll have to contact SAS tech support for questions beyond this as we can't test anything.</description>
      <pubDate>Wed, 01 Dec 2021 23:47:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783489#M249822</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-01T23:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783491#M249824</link>
      <description>&lt;P&gt;If I were to use SAS on Demand, the PostSumInt option should work because it'll be the most up-to-date version of SAS, right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I ask because I'm getting the same error message using SAS on Demand, which makes me wonder whether the issue is broader than just the SAS version I'm working with.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for all of your help!&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 00:17:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783491#M249824</guid>
      <dc:creator>mcraft</dc:creator>
      <dc:date>2021-12-02T00:17:54Z</dc:date>
    </item>
    <item>
      <title>Re: Trouble with ODS Output PostSumInt</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783493#M249825</link>
      <description>&lt;P&gt;PostSumInt works fine on On Demand for me - example from documentation was used.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*-----------------------------------------------------------------
            S A S   S A M P L E   L I B R A R Y                   
                                                                  
      NAME: MCMCEX4                                               
     TITLE: Documentation Example 4 for PROC MCMC                 
            Logistic Regression Model with Jeffreys' Prior        
   PRODUCT: STAT                                                  
    SYSTEM: ALL                                                   
      KEYS:                                                       
     PROCS: MCMC                                                  
      DATA:                                                       
                                                                  
   SUPPORT: Fang Chen                                             
       REF: PROC MCMC, EXAMPLE 4                                  
      MISC:                                                       
-----------------------------------------------------------------*/

title 'Logistic Regression Model with Jeffreys Prior';
data vaso;
   input vol rate resp @@;
   lvol = log(vol);
   lrate = log(rate);
   ind = _n_;
   cnst = 1;
   datalines;
3.7  0.825  1  3.5  1.09  1  1.25  2.5   1  0.75  1.5  1
0.8  3.2    1  0.7  3.5   1  0.6   0.75  0  1.1   1.7  0
0.9  0.75   0  0.9  0.45  0  0.8   0.57  0  0.55  2.75 0
0.6  3.0    0  1.4  2.33  1  0.75  3.75  1  2.3  1.64  1
3.2  1.6    1  0.85 1.415 1  1.7   1.06  0  1.8  1.8   1
0.4  2.0    0  0.95 1.36  0  1.35  1.35  0  1.5  1.36  0
1.6  1.78   1  0.6  1.5   0  1.8   1.5   1  0.95 1.9   0
1.9  0.95   1  1.6  0.4   0  2.7   0.75  1  2.35 0.03  0
1.1  1.83   0  1.1  2.2   1  1.2   2.0   1  0.8  3.33  1
0.95 1.9    0  0.75 1.9   0  1.3   1.625 1
;

%let n = 39;
proc mcmc data=vaso nmc=10000 outpost=mcmcout seed=17;
   ods output PostSumInt = want;

   array beta[3] beta0 beta1 beta2;
   array m[&amp;amp;n, &amp;amp;n];
   array x[1] / nosymbols;
   array xt[3, &amp;amp;n];
   array xtm[3, &amp;amp;n];
   array xmx[3, 3];
   array p[&amp;amp;n];

   parms beta0 1 beta1 1 beta2 1;

   begincnst;
      if (ind eq 1) then do;
         rc = read_array("vaso", x, "cnst", "lvol", "lrate");
         call transpose(x, xt);
         call zeromatrix(m);
      end;
   endcnst;

   beginnodata;
   call mult(x, beta, p);              /* p = x * beta */
   do i = 1 to &amp;amp;n;
      p[i] = 1 / (1 + exp(-p[i]));     /* p[i] = 1/(1+exp(-x*beta)) */
      m[i,i] = p[i] * (1-p[i]);
   end;
   call mult (xt, m, xtm);             /* xtm = xt * m        */
   call mult (xtm, x, xmx);            /* xmx = xtm * x       */
   call det (xmx, lp);                 /* lp = det(xmx)       */
   lp = 0.5 * log(lp);                 /* lp = -0.5 * log(lp) */
   prior beta: ~ general(lp);
   endnodata;

   model resp ~ bern(p[ind]);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Log:&lt;/P&gt;
&lt;PRE&gt; NOTE: The input data set variable ind appears in the distributional specification for beta0. This might lead to incorrect results.
 NOTE: Tuning the proposal distribution.
 NOTE: Generating the burn-in samples.
 NOTE: Beginning sample generation.
 NOTE: Generating diagnostic plots.
&lt;FONT size="4" color="#FF6600"&gt;&lt;STRONG&gt; NOTE: The data set WORK.WANT has 3 observations and 6 variables.&lt;/STRONG&gt;&lt;/FONT&gt;
 NOTE: The data set WORK.MCMCOUT has 10000 observations and 7 variables.
 NOTE: PROCEDURE MCMC used (Total process time):
       real time           1.13 seconds
       user cpu time       0.71 seconds
       system cpu time     0.08 seconds
       memory              24393.70k
       OS Memory           51800.00k
       Timestamp           12/02/2021 12:36:09 AM
       Step Count                        114  Switch Count  41
       Page Faults                       0
       Page Reclaims                     11234
       Page Swaps                        0
       Voluntary Context Switches        761
       Involuntary Context Switches      1
       Block Input Operations            0
       Block Output Operations           17288
       &lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/271531"&gt;@mcraft&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;If I were to use SAS on Demand, the PostSumInt option should work because it'll be the most up-to-date version of SAS, right?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I ask because I'm getting the same error message using SAS on Demand, which makes me wonder whether the issue is broader than just the SAS version I'm working with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for all of your help!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;If you're having further issues it could be related to your data or something else. If you have a licensed version of SAS I'd call Tech Support at this point.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 00:39:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Trouble-with-ODS-Output-PostSumInt/m-p/783493#M249825</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-12-02T00:39:33Z</dc:date>
    </item>
  </channel>
</rss>

