<?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 for Bayesian Hierarchical Meta-Analysis in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184905#M9591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I tried with 0.01 instead but alas still no luck. Will try tech support as you suggested, though I'm particularly curious because this was the code provided by the official SAS software examples on their website... so I assume it must have worked for somebody!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jul 2014 14:43:37 GMT</pubDate>
    <dc:creator>sassos</dc:creator>
    <dc:date>2014-07-18T14:43:37Z</dc:date>
    <item>
      <title>PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184901#M9587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to run the Bayesian hierarchical analysis example shown here in the SAS help: &lt;A class="active_link" href="http://support.sas.com/rnd/app/examples/stat/BayesMeta/new_example/index.html" title="http://support.sas.com/rnd/app/examples/stat/BayesMeta/new_example/index.html"&gt;SAS/STAT Software Examples: Bayesian Hierarchical Modeling for Meta-Analysis&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC MCMC Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mcmc data=multistudies outpost=nlout seed=276 nmc=50000 thin=5 &lt;/P&gt;&lt;P&gt;&amp;nbsp; monitor=(OR Pooled);&lt;/P&gt;&lt;P&gt;&amp;nbsp; array OR[22];&lt;/P&gt;&lt;P&gt;&amp;nbsp; parms mu tau2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; prior mu ~ normal(0, sd=3);&lt;/P&gt;&lt;P&gt;&amp;nbsp; prior tau2~ igamma(0.01,s=0.01);&lt;/P&gt;&lt;P&gt;&amp;nbsp; random theta ~n(mu, var=tau2) subject=studyid;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OR[studyid]=exp(theta);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Pooled=exp(mu);&lt;/P&gt;&lt;P&gt;&amp;nbsp; model logy ~ n(theta, var=sigma2);&amp;nbsp; &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... but I get the following error message: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;ERROR: The initial value 0 for the parameter tau2 is outside of the prior distribution support set.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;NOTE: The prior of tau2 is Inv-GAMMA.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;NOTE: The distribution has a support set of (0, Infinity).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;NOTE: The SAS System stopped processing this step because of errors.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody enlighten me as to why this is happening? I also get an error when I change the tau2 prior to another distribution (uniform, lognormal, etc) and it only seems to work when I remove the tau2 prior altogether (which obviously isn't desirable).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using SAS 9.4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 10:25:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184901#M9587</guid>
      <dc:creator>sassos</dc:creator>
      <dc:date>2014-07-18T10:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184902#M9588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Probably the easies way to get around this would be in the PARMS statement&lt;/P&gt;&lt;P&gt;parms mu tau2 {0.1};&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The curly braces enclose an initial value, so this will move it away from the boundary of the set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 12:53:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184902#M9588</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-07-18T12:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184903#M9589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for getting back to me. I actually tried this already but unfortunately get the following error messages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ERROR: Invalid Operation.&lt;/P&gt;&lt;P&gt;ERROR: Termination due to Floating Point Exception&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does that provide any more clues as to what might be going on?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 14:15:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184903#M9589</guid>
      <dc:creator>sassos</dc:creator>
      <dc:date>2014-07-18T14:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184904#M9590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I missed that the sd for the igamma prior was 0.01, so my intial value was 10 sd away, if that is what you used.&amp;nbsp; Are you certain about the parameters for the igamma?&amp;nbsp; If so, then we just reached the end of my guesses as to things to try.&amp;nbsp; I would say try opening a ticket with Tech Support if fiddling with the parameters of the prior doesn't help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 14:22:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184904#M9590</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-07-18T14:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184905#M9591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I tried with 0.01 instead but alas still no luck. Will try tech support as you suggested, though I'm particularly curious because this was the code provided by the official SAS software examples on their website... so I assume it must have worked for somebody!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 14:43:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184905#M9591</guid>
      <dc:creator>sassos</dc:creator>
      <dc:date>2014-07-18T14:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184906#M9592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any possibility of a versioning incompatibility?&amp;nbsp; Tech support will hit that first, I think.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steve Denham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 14:50:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184906#M9592</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2014-07-18T14:50:42Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184907#M9593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm guessing that could be the reason, let's see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jul 2014 15:13:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184907#M9593</guid>
      <dc:creator>sassos</dc:creator>
      <dc:date>2014-07-18T15:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184908#M9594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data BMA;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; input id ctrl ctrlN trt trtN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; datalines;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 1 3 39 3 38&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 2 14 116 7 114&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 3 11 93 5 69&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 4 127 1520 102 1533&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 5 27 365 28 355&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 6 6 52 4 59&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 7 152 939 98 945&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 8 48 471 60 632&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 9 37 282 25 278&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 10 188 1921 138 1916&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 11 52 583 64 873&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 12 47 266 45 263&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 13 16 293 9 291&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 14 45 883 57 858&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 15 31 147 25 154&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 16 38 213 33 207&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 17 12 122 28 251&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 18 6 154 8 151&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 19 3 134 6 174&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 20 40 218 32 209&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 21 43 364 27 391&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 22 39 674 22 680&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; run;&lt;/P&gt;&lt;P&gt;data BMA;&lt;/P&gt;&lt;P&gt;set BMA;&lt;/P&gt;&lt;P&gt;logy=log(trt/(trtN-trt)/(ctrl/(ctrlN-ctrl)));&lt;/P&gt;&lt;P&gt;sigma2=1/trt+1/(trtN-trt)+1/ctrl+1/(ctrlN-ctrl);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc mcmc data=BMA outpost=nlout seed=276 nmc=50000 thin=5&lt;/P&gt;&lt;P&gt;&amp;nbsp; monitor=(OR Pooled);&lt;/P&gt;&lt;P&gt;&amp;nbsp; array OR[22];&lt;/P&gt;&lt;P&gt;&amp;nbsp; parms mu tau2;&lt;/P&gt;&lt;P&gt;&amp;nbsp; prior mu ~ normal(0, sd=3);&lt;/P&gt;&lt;P&gt;&amp;nbsp; prior tau2~ igamma(0.01,s=0.01);&lt;/P&gt;&lt;P&gt;&amp;nbsp; random theta ~n(mu, var=tau2) subject=id;&lt;/P&gt;&lt;P&gt;&amp;nbsp; OR[id]=exp(theta);&lt;/P&gt;&lt;P&gt;&amp;nbsp; Pooled=exp(mu);&lt;/P&gt;&lt;P&gt;&amp;nbsp; model logy ~ n(theta, var=sigma2); &lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am unable to run this code. &lt;/P&gt;&lt;P&gt;Error : &lt;/P&gt;&lt;P&gt; random theta ~n(mu, var=tau2) subject=id;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ------&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 180&lt;/P&gt;&lt;P&gt;ERROR 180-322: Statement is not valid or it is used out of proper order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 07:11:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184908#M9594</guid>
      <dc:creator>Melissaglenda</dc:creator>
      <dc:date>2014-07-25T07:11:23Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184909#M9595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi;"&gt;I've just copied and run your code, and got no error, clean log! One thing I suspect is that the version you use might not support the RANDOM statement. What version do you use? RANDOM statement is made available&amp;nbsp; by SAS/STAT 9.3.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #1f497d; font-family: 'Calibri','sans-serif'; font-size: 11pt; mso-ascii-theme-font: minor-latin; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 'Times New Roman'; mso-bidi-theme-font: minor-bidi;"&gt;Funda&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 15:07:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184909#M9595</guid>
      <dc:creator>Funda_SAS</dc:creator>
      <dc:date>2014-07-25T15:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184910#M9596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;I am using SAS 9.2. Well you are right may be,,!! I will install 9.3 soon !! I am dying to see the output..Thank you very much for ur help..&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 17:28:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184910#M9596</guid>
      <dc:creator>Melissaglenda</dc:creator>
      <dc:date>2014-07-25T17:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184911#M9597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While installing the newer version on your machine will guarantee access to all your products, if you download this, you can try running your code on the newest versions right now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sas.com/en_us/software/university-edition.html" style="font-size: 10pt; line-height: 1.5em;" title="http://www.sas.com/en_us/software/university-edition.html"&gt;Free Statistical Software, SAS University Edition | SAS&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 17:44:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184911#M9597</guid>
      <dc:creator>ets_kps</dc:creator>
      <dc:date>2014-07-25T17:44:03Z</dc:date>
    </item>
    <item>
      <title>Re: PROC MCMC for Bayesian Hierarchical Meta-Analysis</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184912#M9598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wonderful..!! Thanks a lot..!! :smileyblush:&amp;nbsp; Thank you so much...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Jul 2014 17:46:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/PROC-MCMC-for-Bayesian-Hierarchical-Meta-Analysis/m-p/184912#M9598</guid>
      <dc:creator>Melissaglenda</dc:creator>
      <dc:date>2014-07-25T17:46:08Z</dc:date>
    </item>
  </channel>
</rss>

