<?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: Keeping the Strongest Classification Observation in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135050#M36561</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG,&lt;/P&gt;&lt;P&gt;I would not use your code, if there are some other variables out there, and it usually does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 27 Apr 2014 05:47:38 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2014-04-27T05:47:38Z</dc:date>
    <item>
      <title>Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135044#M36555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;Hi everyone!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; I'm trying to solve the problem below...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; Every customer has a classification (High, Medium or Low) but they have duplicates on HAVE data set, unfortunately the customers duplicates in this data set can have &lt;STRONG&gt;different classification&lt;/STRONG&gt;. For example: &lt;STRONG&gt;Customer A&lt;/STRONG&gt; appears two times on data set with two different classification like the example below.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; &lt;/SPAN&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; What I need to do is to remove the duplicates but keeping the strongest classification, for example &lt;STRONG&gt;Customer A&lt;/STRONG&gt; has &lt;STRONG&gt;Medium&lt;/STRONG&gt; and &lt;STRONG&gt;Low&lt;/STRONG&gt; classifications on HAVE dataset, I need to remove the &lt;STRONG&gt;Low&lt;/STRONG&gt; obs and Keep the &lt;STRONG&gt;Medium&lt;/STRONG&gt; so &lt;STRONG&gt;Medium&lt;/STRONG&gt; is stronger than Low. For &lt;STRONG&gt;Customer B&lt;/STRONG&gt; I need to keep the &lt;STRONG&gt;HIGH&lt;/STRONG&gt; observation instead of &lt;STRONG&gt;LOW.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN lang="EN-US" style="font-size: 10pt; font-family: Arial, sans-serif;"&gt; I was using proc frec nodupkey, like below but unfortunately, in with this code obs are removed without any rule:&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;&lt;SPAN style="background-color: #ffffff; font-family: sans-serif;"&gt;proc sort data = HAVE out = WANT nodupkey;&lt;/SPAN&gt;&lt;SPAN style="font-family: arial, sans-serif; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;&lt;STRONG&gt;&lt;SPAN style="background-color: #ffffff; font-family: sans-serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; by CLASSIFICATION;&lt;/SPAN&gt;&lt;SPAN style="font-family: arial, sans-serif; background-color: #ffffff;"&gt; &lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #0000ff; background-color: #ffffff; font-family: sans-serif;"&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="1" class="jiveBorder" height="180" style="border: 1px solid #000000; width: 318px; height: 182px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;CUSTOMER&lt;/STRONG&gt;&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;&lt;STRONG&gt;CLASSIFICATION&lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;CUSTOMER A&lt;/TD&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;MEDIUM&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;CUSTOMER A&lt;/TD&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;LOW&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;CUSTOMER B&lt;/TD&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;HIGH&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;CUSTOMER B&lt;/TD&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;LOW&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;CUSTOMER C&lt;/TD&gt;&lt;TD style="padding: 2px; text-align: center;"&gt;MEDIUM&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="; color: #0000ff; background-color: #ffffff; font-family: arial, sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #ffffff; font-family: arial, sans-serif;"&gt;Thanks and regards from Brazil!&lt;/SPAN&gt;&lt;SPAN style="; color: #0000ff; background-color: #ffffff; font-family: arial, sans-serif;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 01:42:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135044#M36555</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2014-04-27T01:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135045#M36556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need encode these classification firstly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;data have;
input c $ v $;
cards;
a medium
a low
b high
b low
c medium
;
run;
data have;
 set have;
&amp;nbsp; select (v);
&amp;nbsp;&amp;nbsp; when ("high") r=1;
&amp;nbsp;&amp;nbsp; when ("medium") r=2;
&amp;nbsp;&amp;nbsp; when&amp;nbsp; ("low") r=3;
&amp;nbsp;&amp;nbsp; otherwise;
&amp;nbsp; end;
run;
proc sort data=have;by c r;run;
/* one way */
proc sort data=have out=want1 nodupkey;by c;run;
/*another way*/
data want2;
 set have;
 by c;
 if first.c;
run;
&lt;/PRE&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;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 02:02:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135045#M36556</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-04-27T02:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135046#M36557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use a small auxiliary table containing the required classification order:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data have;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;length customer $12 classification $8;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;input customer &amp;amp; classification;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;datalines;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER A&amp;nbsp; MEDIUM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER A&amp;nbsp; LOW&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER B&amp;nbsp; HIGH&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER B&amp;nbsp; LOW&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CUSTOMER C&amp;nbsp; MEDIUM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data order;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;length classification $8;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do classification = "LOW", "MEDIUM", "HIGH"; order+1; output; end;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run; &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sql;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create table want as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select unique h.*&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;from have as h inner join order as o on h.classification=o.classification&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;group by customer&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;having order = max(order);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select * from want;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 02:29:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135046#M36557</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-04-27T02:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135047#M36558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alternatively, you could sort by a sql-expression and keep only the last record :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc sql;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create view have2 as&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select * from have&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;order by customer,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case classification &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when "LOW" then 1 &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when "MEDIUM" then 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;quit;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data want;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;set have2; by customer;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if last.customer;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 03:57:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135047#M36558</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-04-27T03:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135048#M36559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG,&lt;/P&gt;&lt;P&gt;You can do it in a whole SQL statement.&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;PRE&gt;data have;
length customer $12 classification $8;
input customer &amp;amp; classification;
datalines;
CUSTOMER A&amp;nbsp; MEDIUM
CUSTOMER A&amp;nbsp; LOW
CUSTOMER B&amp;nbsp; HIGH
CUSTOMER B&amp;nbsp; LOW
CUSTOMER C&amp;nbsp; MEDIUM
;

 
proc sql;
create table want as
select unique h.*, case 
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when classification="LOW" then 1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; when classification="MEDIUM" then 2
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else 3
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end as r
from have as h 
group by customer
having r = max(r);
quit;

&lt;/PRE&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;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 04:17:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135048#M36559</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-04-27T04:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135049#M36560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But for the utmost efficiency, assuming dataset have is already sorted by customer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data want;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;array c{3} $ _temporary_ ("LOW", "MEDIUM", "HIGH");&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do until(last.customer);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have; by customer;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i = max(i, whichc(classification, of c{*}));&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;classification = c{max(i,1)};&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;drop i;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 04:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135049#M36560</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2014-04-27T04:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135050#M36561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PG,&lt;/P&gt;&lt;P&gt;I would not use your code, if there are some other variables out there, and it usually does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Xia Keshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Apr 2014 05:47:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135050#M36561</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2014-04-27T05:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping the Strongest Classification Observation</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135051#M36562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to thank you guys, the solutions worked fine and I could achive the goal keeping the strongest one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 00:49:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Keeping-the-Strongest-Classification-Observation/m-p/135051#M36562</guid>
      <dc:creator>anonymous_user</dc:creator>
      <dc:date>2014-04-29T00:49:03Z</dc:date>
    </item>
  </channel>
</rss>

