<?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 dedupe observations with similar pattern? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750408#M236043</link>
    <description>&lt;P&gt;I believe I can solve this by using nodups as per the code sample by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp;right? Just wondering if there's a more sophisticated way..&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jun 2021 10:37:30 GMT</pubDate>
    <dc:creator>rush_milo</dc:creator>
    <dc:date>2021-06-25T10:37:30Z</dc:date>
    <item>
      <title>How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750296#M235970</link>
      <description>&lt;P&gt;Dear SAS communities,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below is the 'Have' table and I would like to dedup it into the 'Want' table as below. The end goal is to have a smaller 'Have' table since the current one has multiple observations with different month/date.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE width="564px"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;&lt;STRONG&gt;Have&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&lt;STRONG&gt;Remark&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="138px"&gt;/sas/table_hist_m01.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="138px"&gt;Keep, but rename _m01 to mXX&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_hist_m02.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_hist_m03.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_hist_m04.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="84px"&gt;/sas/ww0.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="84px"&gt;Keep, no change due to single table&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="111px"&gt;/sas/table_new_20210301.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="111px"&gt;Keep, but rename _20210301 to _YYYYMMDD&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_new_20210302.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_new_20210303.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_new_20210304.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;Remove&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;&lt;STRONG&gt;Want&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_hist_mXX.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/ww0.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="450.667px" height="29px"&gt;/sas/table_new_YYYYMMDD.sas7bdat&lt;/TD&gt;
&lt;TD width="112.667px" height="29px"&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&lt;BR /&gt;May I ask if there's an efficient way of doing this in SAS? Appreciate your kind advice. Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 19:49:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750296#M235970</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-24T19:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750343#M236006</link>
      <description>&lt;P&gt;Can you please post your data as datalines? It looks like prxmatch might work.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 21:31:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750343#M236006</guid>
      <dc:creator>tarheel13</dc:creator>
      <dc:date>2021-06-24T21:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750346#M236007</link>
      <description>&lt;P&gt;So where does the title come into what you want? Do you want to concatenate the rows in m01 - m04 into dataset mxx for example?&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jun 2021 21:43:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750346#M236007</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2021-06-24T21:43:10Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750366#M236019</link>
      <description>&lt;P&gt;Hi &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181158"&gt;@tarheel13&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry here's the datalines:&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 HAVE;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50. REMARK &amp;amp; $50. ;
	  DATALINES;
  1, "/sas/table_hist_m01.sas7bdat", "Keep but rename _m01 to mXX"
  2, "/sas/table_hist_m02.sas7bdat", "Remove"
  3, "/sas/table_hist_m03.sas7bdat", "Remove"
  4, "/sas/table_hist_m04.sas7bdat", "Remove"
  5, "/sas/ww0.sas7bdat", "Keep, no change due to single table"
  6, "/sas/table_new_20210301.sas7bdat", "Keep, but rename _20210301 to _YYYYMMDD"
  7, "/sas/table_new_20210302.sas7bdat", "Remove"
  8, "/sas/table_new_20210303.sas7bdat", "Remove"
  9, "/sas/table_new_20210304.sas7bdat", "Remove"
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA WANT;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50.;
	  DATALINES;
  1, "/sas/table_hist_m01.sas7bdat"
  2, "/sas/ww0.sas7bdat"
  3, "/sas/table_new_YYYYMMDD.sas7bdat"
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 01:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750366#M236019</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T01:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750367#M236020</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13976"&gt;@SASKiwi&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Sorry for not including the datalines. Basically I want the 'Path' column to be deduped into a single line only. That is from:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;m01, m02, m03&amp;nbsp; --&amp;gt; To: mXX&lt;/LI&gt;
&lt;LI&gt;/sas/table_new_20210301.sas7bdat,&amp;nbsp;/sas/table_new_20210302.sas7bdat --&amp;gt; /sas/table_new_YYYYMMDD.sas7bdat&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Below are the datalines for reference:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA HAVE;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50. REMARK &amp;amp; $50. ;
	  DATALINES;
  1, "/sas/table_hist_m01.sas7bdat", "Keep but rename _m01 to mXX"
  2, "/sas/table_hist_m02.sas7bdat", "Remove"
  3, "/sas/table_hist_m03.sas7bdat", "Remove"
  4, "/sas/table_hist_m04.sas7bdat", "Remove"
  5, "/sas/ww0.sas7bdat", "Keep, no change due to single table"
  6, "/sas/table_new_20210301.sas7bdat", "Keep, but rename _20210301 to _YYYYMMDD"
  7, "/sas/table_new_20210302.sas7bdat", "Remove"
  8, "/sas/table_new_20210303.sas7bdat", "Remove"
  9, "/sas/table_new_20210304.sas7bdat", "Remove"
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA WANT;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50.;
	  DATALINES;
  1, "/sas/table_hist_mXX.sas7bdat"
  2, "/sas/ww0.sas7bdat"
  3, "/sas/table_new_YYYYMMDD.sas7bdat"
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 01:45:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750367#M236020</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T01:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750368#M236021</link>
      <description>&lt;P&gt;Sorry&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/181158"&gt;@tarheel13&lt;/a&gt;&amp;nbsp;the 'Want' datalines should be as below. Corrected m01 to mXX.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;DATA WANT;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50.;
	  DATALINES;
  1, "/sas/table_hist_mXX.sas7bdat"
  2, "/sas/ww0.sas7bdat"
  3, "/sas/table_new_YYYYMMDD.sas7bdat"
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 01:48:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750368#M236021</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T01:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750377#M236026</link>
      <description>&lt;P&gt;The following code could have/cause some issues, if the regular expression match wrong parts of Path.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data work.replaced;
   set have(drop= Remark);
   
   Path = prxchange('s/_m\d\d/_mXX/', 1, Path);
   Path = prxchange('s/_\d{8}/_YYYYMMDD/', 1, Path);   
run;


proc sort data=work.replaced out=work.nodups nodupkey;
   by Path;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jun 2021 04:29:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750377#M236026</guid>
      <dc:creator>andreas_lds</dc:creator>
      <dc:date>2021-06-25T04:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750383#M236030</link>
      <description>&lt;P&gt;Will the variable parts always be on the end of the dataset name?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 05:52:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750383#M236030</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2021-06-25T05:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750384#M236031</link>
      <description>&lt;P&gt;Not really. It could be at the front as well. Either at the very front or at the end as per my datalines.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 05:57:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750384#M236031</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T05:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750385#M236032</link>
      <description>&lt;P&gt;Another way&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data WANT;
  set HAVE(keep=PATH);
  PATH = prxchange('s/_m\d\d(\.sas7bdat)/_mXX\1/'     , 1, PATH);
  PATH = prxchange('s/_\d{8}(\.sas7bdat)/_YYYYMMDD\1/', 1, PATH);
  if PATH ne lag(PATH); 
  ID+1;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;DIV class="branch"&gt;
&lt;DIV&gt;
&lt;DIV align="left"&gt;
&lt;TABLE class="table" summary="Procedure Print: Data Set WORK.WANT" frame="box" rules="all" cellspacing="0" cellpadding="5"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TH class="l header" scope="col"&gt;PATH&lt;/TH&gt;
&lt;TH class="r header" scope="col"&gt;ID&lt;/TH&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;/sas/table_hist_mXX.sas7bdat&lt;/TD&gt;
&lt;TD class="r data"&gt;1&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;/sas/ww0.sas7bdat&lt;/TD&gt;
&lt;TD class="r data"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD class="l data"&gt;/sas/table_new_YYYYMMDD.sas7bdat&lt;/TD&gt;
&lt;TD class="r data"&gt;3&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>Fri, 25 Jun 2021 06:03:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750385#M236032</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-06-25T06:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750407#M236042</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/16961"&gt;@ChrisNZ&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Your code works great! Thank you so much.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, I noticed that it doesn't seem to work for observations that are not in sequence. Kindly refer to my 'Have' datalines below for id 3 - 8. The sequence is sas7bdat, followed by sas7bvew. I would like to keep one each for both and remove the rest as per my 'Want'.&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 HAVE;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50. REMARK &amp;amp; $50. ;
	  DATALINES;
  1, "/sas/table_new_dummy.sas7bdat", "Dummy"
  2, "/sas/table_old_dummy.sas7bdat", "Dummy"
  3, "/sas/table_new_20210301.sas7bdat", "Keep"
  4, "/sas/table_new_20210301.sas7bvew", "Keep"
  5, "/sas/table_new_20210302.sas7bdat", "Remove"
  6, "/sas/table_new_20210302.sas7bvew", "Remove"
  7, "/sas/table_new_20210303.sas7bdat", "Remove"
  8, "/sas/table_new_20210303.sas7bvew", "Remove"
RUN;

DATA WANT;
	  INFILE DATALINES DELIMITER=',' DSD;
	  INPUT id PATH &amp;amp; $50.;
	  DATALINES;
  1, "/sas/table_new_dummy.sas7bdat"
  2, "/sas/table_old_dummy.sas7bdat"
  3, "/sas/table_new_YYYYMMDD.sas7bdat"
  4, "/sas/table_new_YYYYMMDD.sas7bvew"
RUN;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Really appreciate your advice. Thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 10:34:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750407#M236042</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T10:34:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750408#M236043</link>
      <description>&lt;P&gt;I believe I can solve this by using nodups as per the code sample by &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/15475"&gt;@andreas_lds&lt;/a&gt;&amp;nbsp;right? Just wondering if there's a more sophisticated way..&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jun 2021 10:37:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750408#M236043</guid>
      <dc:creator>rush_milo</dc:creator>
      <dc:date>2021-06-25T10:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I dedupe observations with similar pattern?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750416#M236044</link>
      <description>If your data is not in sequence, you need to use proc sort.&lt;BR /&gt;</description>
      <pubDate>Fri, 25 Jun 2021 11:47:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-dedupe-observations-with-similar-pattern/m-p/750416#M236044</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2021-06-25T11:47:59Z</dc:date>
    </item>
  </channel>
</rss>

