<?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: 95% CI (Confidence Interval) in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225059#M11902</link>
    <description>&lt;P&gt;I find the structure of your model equation quite strange, with parameter &lt;EM&gt;B&lt;/EM&gt; being used both as an exponent and as a factor... but that is not a SAS issue. Try adding the statement&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;bootstrap / bootci(BC) bootplots(all);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to proc NLIN to get the confidence intervals. Look at the scatter graph (produced if &lt;STRONG&gt;ods graphics&lt;/STRONG&gt; is &lt;STRONG&gt;on&lt;/STRONG&gt;) to see the relationship between your parameter estimates.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Sep 2015 03:26:45 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2015-09-11T03:26:45Z</dc:date>
    <item>
      <title>95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224904#M11877</link>
      <description>Hello&lt;BR /&gt;I have need the last modification in my proc programming that can also estimate the 95% CI (Confidence Interval), though my proc programming estimate 95% CL but I need 95% CI (Confidence Interval).&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;data exp;&lt;BR /&gt;set geumar2;&lt;BR /&gt;if expno=1;&lt;BR /&gt;run;&lt;BR /&gt;;&lt;BR /&gt;&lt;BR /&gt;proc nlin data=exp method=marquardt;&lt;BR /&gt;parms B=0.5 R=0.1;&lt;BR /&gt;delta=0.000001;&lt;BR /&gt;s=sow**(1-B)-R*(1-B)*time;&lt;BR /&gt;if s&amp;gt;0 then stx=s**(1/(1-B));&lt;BR /&gt;else stx=0;&lt;BR /&gt;model stw=stx;&lt;BR /&gt;sb=(sow**(1-B+delta)-R*(1-B+delta)*time);&lt;BR /&gt;if sb&amp;gt;0 then sdb=(stx-sb**(1/(1-B+delta)))/delta;&lt;BR /&gt;else sdb=0;&lt;BR /&gt;der.B=sdb;&lt;BR /&gt;sr=(sow**(1-B)-(R-delta)*(1-B)*time);&lt;BR /&gt;if sr&amp;gt;0 then sdr=(stx-sr**(1/(1-B)))/delta;&lt;BR /&gt;else sdr=0;&lt;BR /&gt;der.R=sdr;&lt;BR /&gt;output out=expp p=pstw r=stw_residual;&lt;BR /&gt;run;&lt;BR /&gt;proc summary data=expp;&lt;BR /&gt;var stw_residual stw;&lt;BR /&gt;output out=stats css(stw)=sstot uss(stw_residual)=ssres N=N;&lt;BR /&gt;run;&lt;BR /&gt;data expp;&lt;BR /&gt;set stats;&lt;BR /&gt;rsquared=1-(ssres/sstot);&lt;BR /&gt;adjrsquared = 1-(1-rsquared)*(N-1) / (N- 2 -1);&lt;BR /&gt;run;&lt;BR /&gt;proc print data=expp;&lt;BR /&gt;run;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Sep 2015 05:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224904#M11877</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T05:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224999#M11890</link>
      <description>Confidence intervals of predicted means or&lt;BR /&gt;confidence intervals of individual predictions or&lt;BR /&gt;confidence intervals of parameter estimates ?</description>
      <pubDate>Thu, 10 Sep 2015 17:26:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/224999#M11890</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-09-10T17:26:02Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225004#M11893</link>
      <description>&lt;P&gt;You can get confidence intervals for the parameters&amp;nbsp;using the BOOTSTRAP command in PROC NLIN.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can get confidence intervals for the predicted values using the OUTPUT statement in PROC NLIN.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 18:07:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225004#M11893</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-09-10T18:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225008#M11894</link>
      <description>I'm looking for confidence intervals for the parameters. But sir(s) I don't have full command over SAS programming as I'm Fisheries specialist. I need you to insert the modify program into my above proc program please.</description>
      <pubDate>Thu, 10 Sep 2015 18:33:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225008#M11894</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T18:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225009#M11895</link>
      <description>&lt;P&gt;Surely you can look up the BOOTSTRAP command in SAS Help. It's not really that hard to use.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 18:34:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225009#M11895</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2015-09-10T18:34:44Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225010#M11896</link>
      <description>Sir&lt;BR /&gt;I search but couldn't understand. Please you modify my proc program.</description>
      <pubDate>Thu, 10 Sep 2015 18:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225010#M11896</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T18:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225021#M11897</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45801"&gt;@afgdurrani0&lt;/a&gt; wrote:&lt;BR /&gt;&amp;nbsp;But sir(s) I don't have full command over SAS programming as I'm Fisheries specialist. I need you to insert the modify program into my above proc program please.&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's not how this forum works. Your entire program above was written by people on this forum. I question how you can interpret the results if you don't understand how things are calculated. Are you even certain it's doing what you want/need?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;If you want someone to write programs for you, hire a consultant. If you want HELP then please feel free to post questions here. Your questions are beyond the help category at this point and more do my work for me.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 19:40:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225021#M11897</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-09-10T19:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225031#M11898</link>
      <description>Dear Reeza&lt;BR /&gt;I am trying to learn sas programming but due to a big difference between my field and such programming that creates a barrier in my learning. I have try this &lt;A href="http://www.ats.ucla.edu/stat/sas/faq/bootstrap.htm" target="_blank"&gt;http://www.ats.ucla.edu/stat/sas/faq/bootstrap.htm&lt;/A&gt; but couldn't get any idea.&lt;BR /&gt;&lt;BR /&gt;P.S I can interpret the result and have used sas in my all publication. It doesn't mean that if someone can't write sas program he would also can't interpret the result.&lt;BR /&gt;Only adjusted r2 is inserted in above proc program, and I have 12 more such proc. I just need one more thing that is 95% ci and for which I dontu think to hire a consultant if I have approach to expert like you through sas community.</description>
      <pubDate>Thu, 10 Sep 2015 20:37:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225031#M11898</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-10T20:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225036#M11899</link>
      <description>&lt;P&gt;But how do you know the programmer inputted the correct options to generate said output?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your original code is from this question, albeit you modified it from the sample provided.&lt;/P&gt;&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Statistical-Procedures/Exponential-regression-and-square-root-model/m-p/207628" target="_blank"&gt;https://communities.sas.com/t5/SAS-Statistical-Procedures/Exponential-regression-and-square-root-model/m-p/207628&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Re: current question - here's the documentation for the bootstrap statement.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/66859/HTML/default/viewer.htm#statug_nlin_syntax02.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/statug/66859/HTML/default/viewer.htm#statug_nlin_syntax02.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good Luck&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 21:15:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225036#M11899</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-09-10T21:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225057#M11900</link>
      <description>Dear Reeza&lt;BR /&gt;the proc program I have and the one suggested in this group both are different. The suggested ones generate very different values than mine ones. And I got these oroc from my Lab.&lt;BR /&gt;And I fist make calculations with hand for few samples than I match it with sas results, in this way I varify sas results.&lt;BR /&gt;&lt;BR /&gt;Still J didn't get my answer :(.</description>
      <pubDate>Fri, 11 Sep 2015 02:50:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225057#M11900</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-11T02:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225058#M11901</link>
      <description>&lt;P&gt;"&lt;SPAN&gt;&lt;EM&gt;But how do you know the programmer inputted the correct options to generate said output&lt;/EM&gt;?&lt;/SPAN&gt;"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rhetorical question, I hope.&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 03:16:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225058#M11901</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-09-11T03:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225059#M11902</link>
      <description>&lt;P&gt;I find the structure of your model equation quite strange, with parameter &lt;EM&gt;B&lt;/EM&gt; being used both as an exponent and as a factor... but that is not a SAS issue. Try adding the statement&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;bootstrap / bootci(BC) bootplots(all);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to proc NLIN to get the confidence intervals. Look at the scatter graph (produced if &lt;STRONG&gt;ods graphics&lt;/STRONG&gt; is &lt;STRONG&gt;on&lt;/STRONG&gt;) to see the relationship between your parameter estimates.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 03:26:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225059#M11902</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-09-11T03:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225065#M11904</link>
      <description>Dear sir&lt;BR /&gt;I first make calculations with hand for few samples than I match it with sas results, in this way I varify sas results.</description>
      <pubDate>Fri, 11 Sep 2015 05:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225065#M11904</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-11T05:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225070#M11905</link>
      <description>&lt;P&gt;Sir I didn't get any result. I got this error: &lt;SPAN style="color: #ff0000; font-family: Consolas, Courier, 'Courier New'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: pre; widows: 1; word-spacing: 0px; -webkit-text-stroke-width: 0px; display: inline !important; float: none; background-color: #c5ced8;"&gt;ERROR: Procedure BOOTSTRAP not found.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can't I get the 95% CI like the ones (95% CL, see the attach image) genereted by my proc automatically?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/11951i52481B037E8EF4C6/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="Capture.PNG" title="Capture.PNG" /&gt;</description>
      <pubDate>Fri, 11 Sep 2015 06:40:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225070#M11905</guid>
      <dc:creator>afgdurrani0</dc:creator>
      <dc:date>2015-09-11T06:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225175#M11908</link>
      <description>&lt;P&gt;At this point, I can only quote&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller﻿&lt;/a&gt;&amp;nbsp;"&lt;EM&gt;Surely you can look up the BOOTSTRAP command in SAS Help. It's not really that hard to use.&lt;/EM&gt;" and point you to&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza﻿&lt;/a&gt;'s references above.&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ultimately, you will need to show some basic understanding of the statistical procedures you are using to defend your results.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 14:43:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225175#M11908</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2015-09-11T14:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225180#M11909</link>
      <description>&lt;P&gt;I was confused by your request, because NLIN automatically gives you the 95% confidence intervals for the parameter estimates. Bootstrap gives an alternative approach. But now I think you are requesting a way to program this outside of NLIN, possibly in the same data step used for the R2 calcuation. You know that you can use an ODS output statement to get the parameter estimates and confidence intervals saved as a data file. Then you would have them for other processing. The default method for the confidence interval is&lt;/P&gt;&lt;P&gt;estimate +/- t.SE,&lt;/P&gt;&lt;P&gt;where t is the 97.5 percentile of the t distrubiton with the error degrees of freedom (with large df, t is about 2). Thus, you can check your work.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 15:06:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225180#M11909</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-09-11T15:06:05Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225184#M11910</link>
      <description>&lt;P&gt;For your information, BOOTSTRAP was only added in the more recent releases of NLIN. It is not in 12.3, but it is in 13.1. So you may not have this.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 15:10:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225184#M11910</guid>
      <dc:creator>lvm</dc:creator>
      <dc:date>2015-09-11T15:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225194#M11911</link>
      <description>&lt;P&gt;In SAS 9.3 SAS generates that in the output, review your output from proc nlin. Do you want that in a dataset rather than in the window?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The format is exactly as your image...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/87iE25D6281B5B0CDA5/image-size/original?v=mpbl-1&amp;amp;px=-1" border="0" alt="9-11-2015 9-54-20 AM.png" title="9-11-2015 9-54-20 AM.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 15:56:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225194#M11911</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-09-11T15:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: 95% CI (Confidence Interval)</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225202#M11912</link>
      <description>&lt;P&gt;Not rhetorical at all, PG. Shoot, some days I put gunk into code that I have no idea as to what is going to happen&lt;FONT face="arial,helvetica,sans-serif"&gt;.&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://communities.sas.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Sep 2015 16:45:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/95-CI-Confidence-Interval/m-p/225202#M11912</guid>
      <dc:creator>SteveDenham</dc:creator>
      <dc:date>2015-09-11T16:45:36Z</dc:date>
    </item>
  </channel>
</rss>

