<?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: Construct random pairs with constraint and within group in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429854#M106213</link>
    <description>&lt;P&gt;Thanks for willing to help out, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;.&amp;nbsp;Exactly, each randomly constructed sample will have 2 records for manager 63. The idea of this program&amp;nbsp;is actually very easy. The variable "n_number" is exogenously given. I need to construct "n_number" of records for each manager. For example, in the work.have dataset, manager 63 has n_number=2, indicating that 2 records need to be drawn from the work.have dataset&amp;nbsp;for each randomly constructed sample. The two records will always be rows that have manager=63. I will iterate this exercise over all managers (i.e., draw "n_number" of raws&amp;nbsp;that have the same manager number).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have tried to run the code you have posted, but the following&amp;nbsp;error occurs:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 78         
 79         proc surveyselect data=work.have
 80               sampsize=work.stratsize
 81               reps=10
 82               out=work.sampled
 83         ;
 84            stratum manager;
 85         run;
 
 ERROR: No _NSIZE_ variable is found in the SAMPSIZE= input data set.
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set WORK.SAMPLED may be incomplete.  When this step was 
          stopped there were 0 observations and 0 variables.
 WARNING: Data set WORK.SAMPLED was not replaced because this step was stopped.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;I am not sure why you are calculating the maximum n_number for each manager. I&amp;nbsp;think that one could do the same as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create table work.stratsize as
	select distinct manager, n_number as _nsize_
	from work.have;
quit;


proc surveyselect data=work.have
      sampsize=work.stratsize 
      reps=10
      out=work.sampled
;
   stratum manager;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;To answer one of the&amp;nbsp;other questions related to the sample size, I do have a large number of observation for each manager (thousands of rows, in total there are about 20 million unique manager-firm pairs).&amp;nbsp;Also, to answer the duplicates related question, each manager-firm pair is unique. So there are no duplicates.&lt;BR /&gt;&lt;BR /&gt;I have a followup question though. I understand that the above code selects randomly "_nsize_" (or "n_number") of rows for each manager and construct 10 samples by doing so. However, I am not sure&amp;nbsp;how to change the restrict&amp;nbsp;the selection to with replacement of rows (SRS is a without replacement procedure as far as I recall). Is there a way to change these&amp;nbsp;conditions in proc surveryselect? &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jan 2018 03:12:10 GMT</pubDate>
    <dc:creator>Yegen</dc:creator>
    <dc:date>2018-01-23T03:12:10Z</dc:date>
    <item>
      <title>Constructing random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429783#M106183</link>
      <description>&lt;P&gt;I have the following dataset:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.have;
 infile cards expandtabs truncover;
 input manager manager_firm_pair $24. n_number;
 cards;
 63 63|1323A|45C6C		2
 63 63|1323A|789A 		2
 63 63|1323A|12SAS		2
 63 63|1323A|2DS3D		2
 63 63|789A|12SAS		2
 63 63|789A|2DS3D		2
 63 63|2DS3D|12SAS		2
 89 89|R34S2|SDS23		3
 89 89|R34S2|J234S		3
 89 89|R34S2|S2WAD3		3
 89 89|J234S|S2WAD3		3
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The variable&amp;nbsp;"n_number" represents the number of random rows the code needs to select. For example, for Manager 63, the code&amp;nbsp;needs to randomly select 2&amp;nbsp;non-identical&amp;nbsp;rows (or&amp;nbsp;manager_firm_pair) that have the Manager number 63.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to repeat this selection X&amp;nbsp;times (in this example 10 times, but with my real sample 10,000 times). In other words, I want to construct &lt;SPAN&gt;X&lt;/SPAN&gt; samples each time randomly selecting "n_number" of rows (or manager_firm_pair) for a each&amp;nbsp;Manager. &amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Here are a few sample outputs that I want based on the above data, work.have:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.want_1;
 infile cards expandtabs truncover;
 input manager_firm_pair $24. n_number;
 cards;
 63 63|1323A|789A		2
 63	63|1323A|2DS3D		2
 89 89|R34S2|J234S		3
 89 89|R34S2|S2WAD3		3
 89 89|J234S|S2WAD3		3
;
run;

data work.want_2;
 infile cards expandtabs truncover;
 input manager_firm_pair $24. n_number;
 cards;
 63	63|1323A|12SAS		2
 63	63|789A|12SAS		2
 89 89|R34S2|J234S		3
 89 89|R34S2|S2WAD3		3
 89 89|J234S|S2WAD3		3
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;I thought of using the following code, but I cannot specify how to iterate this random selection X times and select "n_number" of rows for each manager:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SURVEYSELECT DATA=work.have OUT=work.try METHOD=SRS
  SAMPSIZE=10 SEED=1234567;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 01:29:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429783#M106183</guid>
      <dc:creator>Yegen</dc:creator>
      <dc:date>2018-01-23T01:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429808#M106190</link>
      <description>&lt;P&gt;First I think you need to clarify. Are sample 2 records from manager 63?&lt;/P&gt;
&lt;P&gt;Then you want a STRATA statement for MANAGER. If you have a large number of managers then you can indicate the number of records per manager you want with a data set that would look like&lt;/P&gt;
&lt;P&gt;REPS option would tell the procedure to identify x number of identically sized samples:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your actual data "have" has many identical values of n_number to select then summarize from work.have.&lt;/P&gt;
&lt;P&gt;This may get you started.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc summary data=work.have nway;
   class manager;
   var n_number;
   output out=work.stratsize (drop= _f: _t:) max=_nsize_;
run;

proc sort data=work.have;
   by manager;
run;

proc surveyselect data=work.have
      sampsize=work.stratsize 
      reps=10
      out=work.sampled
;
   stratum manager;
run;&lt;/PRE&gt;
&lt;P&gt;Though unless you have an extremely large number of manager /&amp;nbsp;manager_firm_pair combinations you'll likely have a lot of duplicates&amp;nbsp;if you actually go with 10,000 reps.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:08:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429808#M106190</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-23T16:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429854#M106213</link>
      <description>&lt;P&gt;Thanks for willing to help out, &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;.&amp;nbsp;Exactly, each randomly constructed sample will have 2 records for manager 63. The idea of this program&amp;nbsp;is actually very easy. The variable "n_number" is exogenously given. I need to construct "n_number" of records for each manager. For example, in the work.have dataset, manager 63 has n_number=2, indicating that 2 records need to be drawn from the work.have dataset&amp;nbsp;for each randomly constructed sample. The two records will always be rows that have manager=63. I will iterate this exercise over all managers (i.e., draw "n_number" of raws&amp;nbsp;that have the same manager number).&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have tried to run the code you have posted, but the following&amp;nbsp;error occurs:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 78         
 79         proc surveyselect data=work.have
 80               sampsize=work.stratsize
 81               reps=10
 82               out=work.sampled
 83         ;
 84            stratum manager;
 85         run;
 
 ERROR: No _NSIZE_ variable is found in the SAMPSIZE= input data set.
 NOTE: The SAS System stopped processing this step because of errors.
 WARNING: The data set WORK.SAMPLED may be incomplete.  When this step was 
          stopped there were 0 observations and 0 variables.
 WARNING: Data set WORK.SAMPLED was not replaced because this step was stopped.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;I am not sure why you are calculating the maximum n_number for each manager. I&amp;nbsp;think that one could do the same as follows:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
	create table work.stratsize as
	select distinct manager, n_number as _nsize_
	from work.have;
quit;


proc surveyselect data=work.have
      sampsize=work.stratsize 
      reps=10
      out=work.sampled
;
   stratum manager;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;To answer one of the&amp;nbsp;other questions related to the sample size, I do have a large number of observation for each manager (thousands of rows, in total there are about 20 million unique manager-firm pairs).&amp;nbsp;Also, to answer the duplicates related question, each manager-firm pair is unique. So there are no duplicates.&lt;BR /&gt;&lt;BR /&gt;I have a followup question though. I understand that the above code selects randomly "_nsize_" (or "n_number") of rows for each manager and construct 10 samples by doing so. However, I am not sure&amp;nbsp;how to change the restrict&amp;nbsp;the selection to with replacement of rows (SRS is a without replacement procedure as far as I recall). Is there a way to change these&amp;nbsp;conditions in proc surveryselect? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 03:12:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/429854#M106213</guid>
      <dc:creator>Yegen</dc:creator>
      <dc:date>2018-01-23T03:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/430068#M106284</link>
      <description>&lt;P&gt;I fixed the code is summary, typically I drop the _freq_ and _type_ variables with _: in the drop but since the variable we needed was _nsize_ it got dropped as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was calculating "max" that was one way. Select distinct was another possibility, just depends on style choices.&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/144925"&gt;@Yegen&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;BR /&gt;I have a followup question though. I understand that the above code selects randomly "_nsize_" (or "n_number") of rows for each manager and construct 10 samples by doing so. However, I am not sure&amp;nbsp;how to change the restrict&amp;nbsp;the selection to with replacement of rows (SRS is a without replacement procedure as far as I recall). Is there a way to change these&amp;nbsp;conditions in proc surveryselect?&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Simple SRS is without replacement but each replication starts with all of the records. So you have multiple results with the same manager_firm_pair in different replicates.&lt;/P&gt;
&lt;P&gt;My results from your sample data with 10 replicates;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV class="l proctitle"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV align="left"&gt;
&lt;TABLE class="table" cellspacing="0" cellpadding="3" summary="Procedure Freq: One-Way Frequencies"&gt;&lt;COLGROUP&gt; &lt;COL /&gt;&lt;/COLGROUP&gt; &lt;COLGROUP&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt; &lt;COL /&gt;&lt;/COLGROUP&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="l m header" scope="col"&gt;manager_firm_pair&lt;/TH&gt;
&lt;TH class="r m header" scope="col"&gt;Frequency&lt;/TH&gt;
&lt;TH class="r m header" scope="col"&gt;Percent&lt;/TH&gt;
&lt;TH class="r m header" scope="col"&gt;Cumulative&lt;BR /&gt;Frequency&lt;/TH&gt;
&lt;TH class="r m header" scope="col"&gt;Cumulative&lt;BR /&gt;Percent&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|1323A|12SAS&lt;/TH&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;4.00&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;4.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|1323A|2DS3D&lt;/TH&gt;
&lt;TD class="r data"&gt;4&lt;/TD&gt;
&lt;TD class="r data"&gt;8.00&lt;/TD&gt;
&lt;TD class="r data"&gt;6&lt;/TD&gt;
&lt;TD class="r data"&gt;12.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|1323A|45C6C&lt;/TH&gt;
&lt;TD class="r data"&gt;5&lt;/TD&gt;
&lt;TD class="r data"&gt;10.00&lt;/TD&gt;
&lt;TD class="r data"&gt;11&lt;/TD&gt;
&lt;TD class="r data"&gt;22.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|1323A|789A&lt;/TH&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;TD class="r data"&gt;2.00&lt;/TD&gt;
&lt;TD class="r data"&gt;12&lt;/TD&gt;
&lt;TD class="r data"&gt;24.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|2DS3D|12SAS&lt;/TH&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;6.00&lt;/TD&gt;
&lt;TD class="r data"&gt;15&lt;/TD&gt;
&lt;TD class="r data"&gt;30.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|789A|12SAS&lt;/TH&gt;
&lt;TD class="r data"&gt;3&lt;/TD&gt;
&lt;TD class="r data"&gt;6.00&lt;/TD&gt;
&lt;TD class="r data"&gt;18&lt;/TD&gt;
&lt;TD class="r data"&gt;36.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;63|789A|2DS3D&lt;/TH&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;TD class="r data"&gt;4.00&lt;/TD&gt;
&lt;TD class="r data"&gt;20&lt;/TD&gt;
&lt;TD class="r data"&gt;40.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;89|J234S|S2WAD3&lt;/TH&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="r data"&gt;16.00&lt;/TD&gt;
&lt;TD class="r data"&gt;28&lt;/TD&gt;
&lt;TD class="r data"&gt;56.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;89|R34S2|J234S&lt;/TH&gt;
&lt;TD class="r data"&gt;7&lt;/TD&gt;
&lt;TD class="r data"&gt;14.00&lt;/TD&gt;
&lt;TD class="r data"&gt;35&lt;/TD&gt;
&lt;TD class="r data"&gt;70.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;89|R34S2|S2WAD3&lt;/TH&gt;
&lt;TD class="r data"&gt;7&lt;/TD&gt;
&lt;TD class="r data"&gt;14.00&lt;/TD&gt;
&lt;TD class="r data"&gt;42&lt;/TD&gt;
&lt;TD class="r data"&gt;84.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TH class="l m rowheader" scope="row"&gt;89|R34S2|SDS23&lt;/TH&gt;
&lt;TD class="r data"&gt;8&lt;/TD&gt;
&lt;TD class="r data"&gt;16.00&lt;/TD&gt;
&lt;TD class="r data"&gt;50&lt;/TD&gt;
&lt;TD class="r data"&gt;100.00&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jan 2018 16:18:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/430068#M106284</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-01-23T16:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/430110#M106301</link>
      <description>&lt;P&gt;I see that makes sense, thanks for these helpful comments.&amp;nbsp;Thanks for pointing that out regarding the SRS method. I was not sure that the selection of records for each new sample is drawn from the entire pool of records. That's exactly what I need to do.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;The code is running quite well except for one issue. I am getting the following error for some managers (i.e., IDs):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; 527        
 528        
 529        proc surveyselect data=work.sample_have
 530              sampsize=work.stratsize
 531              method=srs
 532              reps=100
 533              out=work.sampled
 534        ;
 535           stratum id;
 536        run;
 
 ERROR: The sample size, 8, is greater than the number of sampling units, 3.
 NOTE: The above message was for the following stratum:
       id=7.
 ERROR: The sample size, 7, is greater than the number of sampling units, 3.
 NOTE: The above message was for the following stratum:
       id=8.
 ERROR: The sample size, 5, is greater than the number of sampling units, 3.
 NOTE: The above message was for the following stratum:
       id=9.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I assume that the stratsize is greater than the actual number of records for these managers, right?&amp;nbsp;It looks like that these managers are never included in the sample. Would it make sense to replace the stratsize for these managers with the actual number of records (see as below)? As far as I understood it, stratsize is the number of records that need to be randomly drawn from the initial pool that contains all records. Is that fair to say that?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data stratsize(drop=sample_size);
	set stratsize;
	if sample_size&amp;lt;_nsize_ then _nsize_=sample_size; else _nsize_=_nsize_;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Jan 2018 18:44:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/430110#M106301</guid>
      <dc:creator>Yegen</dc:creator>
      <dc:date>2018-01-23T18:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/436775#M108680</link>
      <description>&lt;P&gt;The option SELECTALL will select all the records available when the specified sample size exceeds what is actually in the data.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 16:18:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/436775#M108680</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-13T16:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Construct random pairs with constraint and within group</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/436788#M108682</link>
      <description>&lt;P&gt;Perfect, thanks for this helpful comment&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 17:24:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Constructing-random-pairs-with-constraint-and-within-group/m-p/436788#M108682</guid>
      <dc:creator>Yegen</dc:creator>
      <dc:date>2018-02-13T17:24:26Z</dc:date>
    </item>
  </channel>
</rss>

