<?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: bootstrap for default rates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419071#M103010</link>
    <description>&lt;P&gt;That doesn’t change the fact that your log is full of errors. Did you fix your PROC CORR step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that we can’t do anything with pictures, To work with it we’d first have&amp;nbsp;to type it out. You should include what you expect as output as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181404"&gt;@Anna7&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;The code that I sent above I had edited it little for my dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this is the original code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 291px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17056i890DBD274D7CCF09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and here is the dataset for that code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 311px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17057i8C0C6DDB6A755C48/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is the current dataset I need to use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 251px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17058i6BFE402CF212FF7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and I need to&amp;nbsp;Use the nonparametric bootstrap method&amp;nbsp;to generate 95% confidence intervals for default rates of each rating category.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am confused as to how to go about the code for this requirement.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Dec 2017 04:25:06 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2017-12-07T04:25:06Z</dc:date>
    <item>
      <title>bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419036#M103002</link>
      <description>&lt;P&gt;Hello, I would like some help with this question:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The data contains S&amp;amp;P rating information for around 15,000 companies at the beginning as well as end of the year 2015.&lt;/P&gt;&lt;P&gt;PID: a serial number representing company ID;&lt;/P&gt;&lt;P&gt;Rating2015_B:&amp;nbsp; S&amp;amp;P rating at the beginning of the year 2015;&lt;/P&gt;&lt;P&gt;Rating2015_E: S&amp;amp;P rating at the end of the year 2015, “D” means company defaults at the end of year&lt;/P&gt;&lt;P&gt;Use the nonparametric bootstrap method (exclude the defaults) to generate 95% confidence intervals for default rates of each rating category. &amp;nbsp;&lt;/P&gt;&lt;P&gt;Explore the relationship between the length of CIs and number of bootstrap samples and confidence level.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;surveyselect&lt;/STRONG&gt; data=Mylib.LoanData&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; method=SRS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;n=&lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;reps=&lt;STRONG&gt;100&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; seed=&lt;STRONG&gt;9999&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; out=Mylib.LoanDataBootStrapCor;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;corr&lt;/STRONG&gt; data=Mylib.LoanDataBootStrapCor;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by replicate;var Rating_2015B;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods output PearsonCorr=Mylib.BootStrapPearsonCorr;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; Mylib.BootStrapPearsonCorr1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set Mylib.BootStrapPearsonCorr;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;by replicate;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;if first.replicate then delete;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;univariate&lt;/STRONG&gt; data=Mylib.BootStrapPearsonCorr1 pctldef=&lt;STRONG&gt;4&lt;/STRONG&gt;; var &lt;SPAN&gt;Rating_2015B&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; output out=Mylib.BootStrapCorCI pctlpts=&amp;amp;pctlpts. pctlpre=pct_; &lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;print&lt;/STRONG&gt; data=Mylib.BootStrapCorCI; &lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to get some help and understand where I am going wrong and if this code is correct for this particular question.&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i run the code, i'm getting error as sas is not recognizing&amp;nbsp;&lt;SPAN&gt;BootStrapPearsonCorr1 and&amp;nbsp;BootStrapCorCI&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 01:57:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419036#M103002</guid>
      <dc:creator>Anna7</dc:creator>
      <dc:date>2017-12-07T01:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419042#M103005</link>
      <description>&lt;P&gt;What does the log show?&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 02:38:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419042#M103005</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-07T02:38:14Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419045#M103007</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17052i775E921A618C68F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your reply. This is what I see, but I am not sure what I should do next?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think the output should show something with this:&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;Obs&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;pct_2_5&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;&lt;STRONG&gt;pct_97_5&lt;/STRONG&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;is there anything wrong with the code? The code that i'm using was previously used for numerical data, but the rating data I am using right now as loan rating as and so forth. What modifications should be made to the code? thank you&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BBB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BB&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;BB+&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 07 Dec 2017 02:48:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419045#M103007</guid>
      <dc:creator>Anna7</dc:creator>
      <dc:date>2017-12-07T02:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419048#M103008</link>
      <description>&lt;P&gt;Yes, there's something wrong with the code and that isn't the full log.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You show errors in red. Fix them first, in the order they appear. I suspect you also have another error or note above.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think you're doing what you expect in this step for starters and probably where you issue originates since the dataset is not created or available for you later - the first error that I can see.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;corr&lt;/STRONG&gt; data=Mylib.LoanDataBootStrapCor;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by replicate;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; var Rating_2015B;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ods output PearsonCorr=Mylib.BootStrapPearsonCorr;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you code has errors how can you trust the results? You can't.&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181404"&gt;@Anna7&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17052i775E921A618C68F2/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your reply. This is what I see, but I am not sure what I should do next?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think the output should show something with this:&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;Obs&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;pct_2_5&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;TD&gt;
&lt;P&gt;&lt;STRONG&gt;pct_97_5&lt;/STRONG&gt;&lt;/P&gt;
&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is there anything wrong with the code? The code that i'm using was previously used for numerical data, but the rating data I am using right now as loan rating as and so forth. What modifications should be made to the code? thank you&lt;/P&gt;
&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;B&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BBB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BB&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;BB+&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 03:02:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419048#M103008</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-07T03:02:08Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419054#M103009</link>
      <description>&lt;P&gt;The code that I sent above I had edited it little for my dataset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But this is the original code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 291px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17056i890DBD274D7CCF09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and here is the dataset for that code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 311px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17057i8C0C6DDB6A755C48/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and this is the current dataset I need to use:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 251px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17058i6BFE402CF212FF7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and I need to&amp;nbsp;Use the nonparametric bootstrap method&amp;nbsp;to generate 95% confidence intervals for default rates of each rating category.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am confused as to how to go about the code for this requirement.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 03:16:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419054#M103009</guid>
      <dc:creator>Anna7</dc:creator>
      <dc:date>2017-12-07T03:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419071#M103010</link>
      <description>&lt;P&gt;That doesn’t change the fact that your log is full of errors. Did you fix your PROC CORR step.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that we can’t do anything with pictures, To work with it we’d first have&amp;nbsp;to type it out. You should include what you expect as output as well.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181404"&gt;@Anna7&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;The code that I sent above I had edited it little for my dataset.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But this is the original code&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 291px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17056i890DBD274D7CCF09/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and here is the dataset for that code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 311px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17057i8C0C6DDB6A755C48/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and this is the current dataset I need to use:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 251px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/17058i6BFE402CF212FF7A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and I need to&amp;nbsp;Use the nonparametric bootstrap method&amp;nbsp;to generate 95% confidence intervals for default rates of each rating category.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am confused as to how to go about the code for this requirement.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 04:25:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419071#M103010</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-12-07T04:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: bootstrap for default rates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419076#M103012</link>
      <description>&lt;P&gt;Thank you, will try to use a different method and see if it works.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Dec 2017 05:07:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/bootstrap-for-default-rates/m-p/419076#M103012</guid>
      <dc:creator>Anna7</dc:creator>
      <dc:date>2017-12-07T05:07:48Z</dc:date>
    </item>
  </channel>
</rss>

