<?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: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711443#M219170</link>
    <description>&lt;P&gt;Thats a very good start &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;BUt how to I assign accordingly to my conditions as well?&lt;/P&gt;</description>
    <pubDate>Thu, 14 Jan 2021 13:12:32 GMT</pubDate>
    <dc:creator>Pili1100</dc:creator>
    <dc:date>2021-01-14T13:12:32Z</dc:date>
    <item>
      <title>How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711251#M219071</link>
      <description>&lt;P&gt;&lt;STRONG&gt;How do I randomly distribute/split my dataset in 5 parts (5 suppliers) like 60%, 11.2% ,11 .2%, 11.2% and 6.4% with conditions? &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a very manual code snippet but I have found some tips on SURVEYSELECT but I’m open for any suggestions/help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;More info below.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Paula&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The dataset contains 2806 customers/rows in dataset&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;2570 old customers (2511 has 0-9 employees/59 has 10-19 employees)&lt;/LI&gt;&lt;LI&gt;236 new customers (202 has 0-9 employees/34 has 10-19 employees)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The list should be distributed accordingly:&lt;/P&gt;&lt;P&gt;1) 60 % to Smorgasbord&lt;/P&gt;&lt;P&gt;2) 11.2 % to GPS&lt;/P&gt;&lt;P&gt;3) 11.2 % to Saab&lt;/P&gt;&lt;P&gt;4) 11.2 % to ABBA&lt;/P&gt;&lt;P&gt;5) 6,4 % to Pacemaker&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Conditions&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This is the tricky bit (at least for me):&lt;/P&gt;&lt;P&gt;1) If the number of employees is greater than 9 the customers must be distributed to Smorgasbord.&lt;/P&gt;&lt;P&gt;2) The distribution between old/new should be the same for the supplier.&lt;/P&gt;&lt;P&gt;3) Besides 1 )and 2): It should be random which customer is given to a certain supplier.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;E.g. &amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Smorgasbord will have 1028 new customers and 95 old customers AND will have 100 % of customers with a number of employees being greater than 9 (59+34).&lt;/P&gt;&lt;P&gt;Pacemaker will have 165 old customer and 15 new customer AND will only have customers with a number of employees between 0-9.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dummy code&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;FONT face="courier new,courier"&gt;&lt;CODE class=" language-sas"&gt;DATA WORK.temp; 
Infile datalines delimiter=','; 
INPUT Customer_Id $ Nbr_EMPL Type_of_customer $ ; 

CARDS; 
CU1238A4,0,Old
CU1238B1,0,Old
CU1238C8,1,Old
CU1238D1,1,Old
CU1238E1,1,New
CU1238F1,1,Old
CU1238G9,2,New
CU1238H1,2,New
CU1238I1,2,Old
CU1238J1,9,New
CU1238K7,11,New
CU1238L5,12,Old
CU1238M6,14,Old
CU1238N1,14,New
CU1238O1,17,Old
CU1238P2,2,Old
CU1238Q3,9,Old
CU1238R4,11,Old
CU1238S5,12,Old
CU1238T6,14,New
CU1238U7,1,Old
CU1238V8,1,New
CU1238X9,1,New
CU1238Y10,2,Old
CU1238Z11,2,New
;
RUN;
PROC SORT DATA=temp;
BY Customer_Id Nbr_EMPL;
RUN;
DATA temp2;
SET temp;
LENGTH Split $20;
/*Remember that Smorgasbord should have 60%  */
	IF Nbr_EMPL &amp;gt; 9 THEN Split = 'Smorgasbord';
	Else Split = 'Not assigned yet';
RUN;&lt;/CODE&gt;&lt;/FONT&gt;&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:19:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711251#M219071</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-01-14T13:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711389#M219146</link>
      <description>&lt;P&gt;*correction 60 % to Smorgasbord&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:07:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711389#M219146</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-01-14T10:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711409#M219157</link>
      <description>&lt;P&gt;0.40 + 0.112 + 0.112 + 0.112 + 0.064 = 0.8.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What do you want to do with the remaining 20% of your data?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:54:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711409#M219157</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T10:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711410#M219158</link>
      <description>&lt;P&gt;Ah. beat me to it.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:54:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711410#M219158</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T10:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711412#M219159</link>
      <description>&lt;P&gt;So you data looks like this, correct? Just to get started..&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
   do customer = 1 to 2806;
      if customer &amp;lt;= 2570 then do;
          oldnew = "Old";
          if customer &amp;lt;= 2511 then do;
             emp = "0-9 Employees ";
             output;
          end;
          else do;
             emp = "10-19 Employees";
             output;
          end;
      end;
      else do;
         oldnew = "New";
         if customer &amp;lt;= (2570 + 202) then do;
            emp = "0-9 Employees ";
            output;
         end;
         else do;
            emp = "10-19 Employees";
            output;
         end;
      end;
   end;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jan 2021 10:59:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711412#M219159</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T10:59:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711422#M219161</link>
      <description>&lt;P&gt;Did you find your answer? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; If so, great. If not, I'll be happy to help you.&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 11:58:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711422#M219161</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2021-01-14T11:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711426#M219163</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data part1 part2 part3 part4 part5;
 set sashelp.heart;
 call streaminit(12345678);
 _n_=rand('table',.6, .112 ,.112, .112 ,.064);
 select(_n_);
 when(1) output part1;
 when(2) output part2;
 when(3) output part3;
 when(4) output part4;
 when(5) output part5;
 otherwise;
 end;
 
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jan 2021 12:15:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711426#M219163</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-14T12:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711428#M219164</link>
      <description>&lt;P&gt;Hi! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; I will have look at all the replies and see what i find &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks so much for giving me a helping hand!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 12:17:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711428#M219164</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-01-14T12:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711441#M219168</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is an example with 25 rows (i know a tiny dataset, but the logic should be the same no matter the volume?)&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Skärmbild 2021-01-14 135702.jpg" style="width: 247px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53503iA061BBFEF4472E7C/image-dimensions/247x98?v=v2" width="247" height="98" role="button" title="Skärmbild 2021-01-14 135702.jpg" alt="Skärmbild 2021-01-14 135702.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Skärmbild 2021-01-14 135828.jpg" style="width: 161px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53504i71EA26313E216665/image-dimensions/161x188?v=v2" width="161" height="188" role="button" title="Skärmbild 2021-01-14 135828.jpg" alt="Skärmbild 2021-01-14 135828.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Skärmbild 2021-01-14 135954.jpg" style="width: 160px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53505i3712811657A512FD/image-dimensions/160x179?v=v2" width="160" height="179" role="button" title="Skärmbild 2021-01-14 135954.jpg" alt="Skärmbild 2021-01-14 135954.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;&lt;STRONG&gt;Condition&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: small; font-family: inherit;"&gt;1) The customers with &amp;gt;9 empl. &lt;/SPAN&gt;&lt;STRONG&gt;must&lt;/STRONG&gt;&lt;SPAN style="font-size: small; font-family: inherit;"&gt; be assigned to Smorgasbord -&amp;gt; 8 of them (&amp;nbsp;&lt;FONT color="#993366"&gt;&lt;FONT color="#0000FF"&gt;3 New&lt;/FONT&gt;&lt;FONT color="#000000"&gt; &amp;amp;&amp;nbsp;&lt;/FONT&gt;5 Old &lt;/FONT&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;2) Smorgasbord should have 15 of 25 -&amp;gt; &lt;FONT color="#0000FF"&gt;6 of the new customers&lt;/FONT&gt; and&lt;FONT color="#800080"&gt; 9 of the old&lt;/FONT&gt; (60 % in total and within New/Old)&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;Questions&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;3) How do I randomly assign &lt;FONT color="#0000FF"&gt;3 New&lt;/FONT&gt; and &lt;FONT color="#800080"&gt;4 Old &lt;STRONG&gt;&lt;FONT color="#000000"&gt;more&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt; to Smorgasbord so as to add up to 60 %?&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="2"&gt;4) How to I assign the rest of the accordingly to the supplier's share and old/new?&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA WORK.temp; 
Infile datalines delimiter=','; 
INPUT Customer_Id $ Nbr_EMPL Type_of_customer $ ; 

CARDS; 
CU1238A4,0,Old
CU1238B1,0,Old
CU1238C8,1,Old
CU1238D1,1,Old
CU1238E1,1,New
CU1238F1,1,Old
CU1238G9,2,New
CU1238H1,2,New
CU1238I1,2,Old
CU1238J1,9,New
CU1238K7,11,New
CU1238L5,12,Old
CU1238M6,14,Old
CU1238N1,14,New
CU1238O1,17,Old
CU1238P2,2,Old
CU1238Q3,9,Old
CU1238R4,11,Old
CU1238S5,12,Old
CU1238T6,14,New
CU1238U7,1,Old
CU1238V8,1,New
CU1238X9,1,New
CU1238Y10,2,Old
CU1238Z11,2,New
;
RUN;
PROC SORT DATA=temp;
BY Customer_Id Nbr_EMPL;
RUN;
DATA temp2;
SET temp;
LENGTH Split $20;
/*Smorgasbord should have 60% = 15  */
	IF Nbr_EMPL &amp;gt; 9 THEN Split = 'Smorgasbord';
	Else Split = 'Not assigned yet';
	/*15-8 = 7 more must be given to Smorgasbord*/
RUN;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:10:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711441#M219168</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-01-14T13:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711443#M219170</link>
      <description>&lt;P&gt;Thats a very good start &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;BUt how to I assign accordingly to my conditions as well?&lt;/P&gt;</description>
      <pubDate>Thu, 14 Jan 2021 13:12:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711443#M219170</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-01-14T13:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711445#M219171</link>
      <description>From your 2806 obs get rid of &lt;BR /&gt;59 has 10-19 employees)&lt;BR /&gt;34 has 10-19 employees)&lt;BR /&gt;&lt;BR /&gt;and using  2806 - 59 - 34   obs to my code and &lt;BR /&gt;also correct&lt;BR /&gt;60%, 11.2% ,11 .2%, 11.2% and 6.4% &lt;BR /&gt; into  right probability ,since 2806 has been changed .</description>
      <pubDate>Thu, 14 Jan 2021 13:22:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/711445#M219171</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-01-14T13:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: How do I randomly distribute/split my dataset in 5 parts (5 suppliers) WITH conditions?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/716146#M221280</link>
      <description>&lt;P&gt;I actually found one of your other suggestions in a similar thread.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Basically - with help from a colleague - we did create macro-variable for the different shares. Less manual work from me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then I just put the macro variables in the code like:&lt;/P&gt;&lt;P&gt;This is just for Old.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA tempOld tempNew Given_to_SM;
SET WORK.temp2;
	IF (Split NE 'Smorgasbord' AND Type_of_customer = 'Old') THEN OUTPUT  tempOld;	
	ELSE IF (Split NE 'Smorgasbord' AND Type_of_customer = 'New') THEN OUTPUT  tempNew;
		ELSE OUTPUT Given_to_SM;
RUN;

/*Random Old*/
DATA SmorgasbordOld SaabOld ABBAOld GPSOld PacemakerOld;
 SET tempOld  nobs=n_avail;
 CALL streaminit(123456780);
 IF _n_=1 THEN DO;
   ARRAY need {1:5} _temporary_;
   need{1} = round(&amp;amp;ShareOld_Smorgasbord*n_avail);
   need{2} = round(&amp;amp;ShareOld_SAAB*n_avail);
   need{3} = round(&amp;amp;ShareOld_ABBA*n_avail);
   need{4} = round(&amp;amp;ShareOld_GPS*n_avail);
   need{5} = n_avail-sum(of need{*});
 END;
 n=rand('table',need{1}/n_avail,need{2}/n_avail,need{3}/n_avail,need{4}/n_avail);
 IF n=1 THEN  OUTPUT SmorgasbordOld; 
  ELSE IF n=2 THEN  OUTPUT SaabOld; 
   ELSE IF n=3 THEN   OUTPUT ABBAOld;
   ELSE IF n=4 THEN   OUTPUT GPSOld;
    ELSE OUTPUT PacemakerOld;
 need{n}=need{n}-1;
 n_avail+(-1);
DROP n;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 17:23:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-randomly-distribute-split-my-dataset-in-5-parts-5/m-p/716146#M221280</guid>
      <dc:creator>Pili1100</dc:creator>
      <dc:date>2021-02-02T17:23:49Z</dc:date>
    </item>
  </channel>
</rss>

