<?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: CAS Bootstrapping in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931338#M10832</link>
    <description>&lt;P&gt;A note on the above (see my earlier reply).&lt;/P&gt;
&lt;P&gt;I understand that eternal reproducibility and repeatability may be desired, but we should not -- in the case of bootstrapping -- exaggerate its importance either. After all, if you get completely different results with slightly different re-samples, that is a good signal that something is wrong with the bootstrapping. Then you probably need more and/or bigger re-samples. As soon as you set up reliable bootstrapping, the actual samples (almost) don't matter anymore. The results will be identical to several decimal places.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jun 2024 21:10:15 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2024-06-07T21:10:15Z</dc:date>
    <item>
      <title>CAS Bootstrapping</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931229#M10828</link>
      <description>&lt;P&gt;Is there any way of replicating proc surveyselect in CAS for bootstrapping datasets - I have found sampling.srs action but can't seem to get the code working and as a second point proc surveyselect returns the number of times a row has been selected can we do the same with sampling.srs&amp;nbsp; ?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 10:03:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931229#M10828</guid>
      <dc:creator>phopkinson</dc:creator>
      <dc:date>2024-06-07T10:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: CAS Bootstrapping</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931336#M10831</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's important to know which Viya version you are using , because in Viya 3.5 it is difficult (but possible) to get always the same bootstrap re-samples (across memory purges). In Viya 4, it's easy as there is a "reproducibility button" (plastically expressed).&lt;/P&gt;
&lt;P&gt;Please submit :&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%put &amp;amp;=sysvlong4;
%put &amp;amp;=SYSVIYARELEASE;
%put &amp;amp;=SYSVIYAVERSION;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;... and tell us about the results (see log-screen)!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, in PROC SURVEYSELECT you probably use method=&lt;SPAN&gt;URS (sampling&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;with equal probability and &lt;STRONG&gt;with replacement&lt;/STRONG&gt;)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;, while the&amp;nbsp;&lt;SPAN&gt;sampling.srs action corresponds to method=SRS.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;Go here for what you need (proper bootstrap re-sampling in CAS), but we may need to assist you more to ensure reproducibility and repeatability (first tell us about your Viya release before I go into details here).&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Bootstrap Resampling At Scale: Part 1 (of 3) dd. 03 March 2020&lt;BR /&gt;&lt;A href="https://statmike.com/blog/sgf2020p1" target="_blank"&gt;https://statmike.com/blog/sgf2020p1&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Bootstrap Resampling At Scale: Part 2 (of 3) dd. 04 March 2020&lt;BR /&gt;&lt;A href="https://statmike.com/blog/sgf2020p2" target="_blank"&gt;https://statmike.com/blog/sgf2020p2&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;&lt;SPAN&gt;Bootstrap Resampling At Scale: Part 3 (of 3) dd. 05 March 2020&lt;BR /&gt;&lt;A href="https://statmike.com/blog/sgf2020p3" target="_blank"&gt;https://statmike.com/blog/sgf2020p3&lt;/A&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN&gt;BR, Koen&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 20:58:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931336#M10831</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-06-07T20:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: CAS Bootstrapping</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931338#M10832</link>
      <description>&lt;P&gt;A note on the above (see my earlier reply).&lt;/P&gt;
&lt;P&gt;I understand that eternal reproducibility and repeatability may be desired, but we should not -- in the case of bootstrapping -- exaggerate its importance either. After all, if you get completely different results with slightly different re-samples, that is a good signal that something is wrong with the bootstrapping. Then you probably need more and/or bigger re-samples. As soon as you set up reliable bootstrapping, the actual samples (almost) don't matter anymore. The results will be identical to several decimal places.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jun 2024 21:10:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/CAS-Bootstrapping/m-p/931338#M10832</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2024-06-07T21:10:15Z</dc:date>
    </item>
  </channel>
</rss>

