<?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: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143290#M38123</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure about OP's real intention, but this is the quote from the initial post, maybe the course has been shifted down the line?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"I'm wanting to delete all pairs (i.e both entires) leaving me with only the observations which only appear once i.e were not one of a pair."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, it will remove both, because that is exactly what OP desires, or at least appeared to be so, judging from the above statement. Well, at the same time, I agree this may NOT be a case that is 'beyond reasonable doubt", per se &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Nov 2013 19:02:52 GMT</pubDate>
    <dc:creator>Haikuo</dc:creator>
    <dc:date>2013-11-18T19:02:52Z</dc:date>
    <item>
      <title>Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143281#M38114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I managed to resolve my first (harder) query, I'm now stuck which this one, which should be easy!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a list which contains ~50 variables per observation. Some observations (which I'm usinag as the ID) are duplicates, sorted by observation/ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm wanting to delete all pairs (i.e both entires) leaving me with only the observations which only appear once i.e were not one of a pair.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've scoured the web and found nothing! But loads about removing duplicates to leave one of the duplicate pair, which isn't what I'm after!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is truly appreciated, it should be so easy I'll kick myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 13:15:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143281#M38114</guid>
      <dc:creator>JBOrlov</dc:creator>
      <dc:date>2013-11-14T13:15:47Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143282#M38115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from table&lt;/P&gt;&lt;P&gt;where ID_columns not in (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID_columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from (&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID_columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , count(*) as records&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by ID_columns&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where records &amp;gt; 1&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;quit;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 13:25:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143282#M38115</guid>
      <dc:creator>afhood</dc:creator>
      <dc:date>2013-11-14T13:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143283#M38116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could I be a fool and ask you to spell it out, I'm having a try but getting a few errors (cannot find work.data.table etc)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 13:40:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143283#M38116</guid>
      <dc:creator>JBOrlov</dc:creator>
      <dc:date>2013-11-14T13:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143284#M38117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Replace ID_columns with the columns that make up your id you mentioned.&lt;/P&gt;&lt;P&gt;Replace table with the dataset you are using (eg. work.some_ds or whatever).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't see any specific details about the dataset you are using in this post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 13:44:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143284#M38117</guid>
      <dc:creator>afhood</dc:creator>
      <dc:date>2013-11-14T13:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143285#M38118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;/* maybe a sample dataset in the example would help */&lt;/P&gt;&lt;P&gt;data shoes;&lt;/P&gt;&lt;P&gt;set sashelp.shoes;id_columns = _n_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data shoes1; set sashelp.shoes(obs=11) ;&lt;/P&gt;&lt;P&gt;id_columns = _n_;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data shoes1;&lt;/P&gt;&lt;P&gt;set shoes shoes1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table shoes2 as select *&lt;/P&gt;&lt;P&gt;from shoes1 where ID_columns not in (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID_columns&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from (&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID_columns&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; , count(*) as records&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;from shoes1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;group by ID_columns&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt; where records &amp;gt; 1 );&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ck; set shoes2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Nov 2013 20:58:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143285#M38118</guid>
      <dc:creator>c36911</dc:creator>
      <dc:date>2013-11-14T20:58:40Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143286#M38119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How about this? A little cleanup. &lt;/P&gt;&lt;P&gt;/* maybe a sample dataset in the example would help */&lt;/P&gt;&lt;P&gt;data shoes;&lt;/P&gt;&lt;P&gt;set sashelp.shoes;id_columns = _n_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data shoes1; set sashelp.shoes(obs=11) ;&lt;/P&gt;&lt;P&gt;id_columns = _n_;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data shoes1;&lt;/P&gt;&lt;P&gt;set shoes shoes1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; region&lt;/P&gt;&lt;P&gt;&amp;nbsp; , product&lt;/P&gt;&lt;P&gt;&amp;nbsp; , subsidiary&lt;/P&gt;&lt;P&gt;&amp;nbsp; , max(ID_columns) as id_columns &lt;/P&gt;&lt;P&gt;&amp;nbsp; from shoes1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; group by &lt;/P&gt;&lt;P&gt;&amp;nbsp; region&lt;/P&gt;&lt;P&gt;&amp;nbsp; , product&lt;/P&gt;&lt;P&gt;&amp;nbsp; , subsidiary&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;create table shoes2 as select *&lt;/P&gt;&lt;P&gt;from shoes1 &lt;/P&gt;&lt;P&gt;where id_columns in (&lt;/P&gt;&lt;P&gt;&amp;nbsp; select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; max(ID_columns) as id_columns &lt;/P&gt;&lt;P&gt;&amp;nbsp; from shoes1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; group by &lt;/P&gt;&lt;P&gt;&amp;nbsp; region&lt;/P&gt;&lt;P&gt;&amp;nbsp; , product&lt;/P&gt;&lt;P&gt;&amp;nbsp; , subsidiary&lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ck; set shoes2;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 15:59:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143286#M38119</guid>
      <dc:creator>afhood</dc:creator>
      <dc:date>2013-11-15T15:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143287#M38120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I struggle to understand how your dataset is built esp with the naming of ID as Observation but anyway from what I get&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have a dataset, let's call it "have" as by the standards around the forums. It is already sorted by a variable called ID and you have duplicate IDs. You wish to subset to have only records that have no duplicates? If so, and again, this relies on the existing sortation, you can use by processing to trivialize the job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by ID;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.id and last.id then output;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The above outputs a record to the dataset WANT only if it is simultaneously the first and the last value of a by-group effectively only outputting IDs that have no duplicates. It is also significantly faster than query on a subquery with count() from SQL if you are not running on a DBMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vincent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 18:26:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143287#M38120</guid>
      <dc:creator>Vince28_Statcan</dc:creator>
      <dc:date>2013-11-15T18:26:33Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143288#M38121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just for the sake of SQL, subquery is not needed, but I am not sure how that affects performance:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp; create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select * from have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; group by id&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; having count(*) &amp;lt;2;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Nov 2013 18:56:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143288#M38121</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-11-15T18:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143289#M38122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This won't work. You will be completely removing observations with more than 1 record. You want to keep one observation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, you could also use proc sort and dedupkey. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 18:52:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143289#M38122</guid>
      <dc:creator>afhood</dc:creator>
      <dc:date>2013-11-18T18:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Removing duplicate pairs i.e keeping only unique values that weren't part of a pair</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143290#M38123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not sure about OP's real intention, but this is the quote from the initial post, maybe the course has been shifted down the line?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"I'm wanting to delete all pairs (i.e both entires) leaving me with only the observations which only appear once i.e were not one of a pair."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right, it will remove both, because that is exactly what OP desires, or at least appeared to be so, judging from the above statement. Well, at the same time, I agree this may NOT be a case that is 'beyond reasonable doubt", per se &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Haikuo &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Nov 2013 19:02:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Removing-duplicate-pairs-i-e-keeping-only-unique-values-that/m-p/143290#M38123</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2013-11-18T19:02:52Z</dc:date>
    </item>
  </channel>
</rss>

