<?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 Fuzzy logic to locate duplicates? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436294#M108515</link>
    <description>&lt;P&gt;How can fuzzy logic be used to locate duplicate records in a single dataset? I have records where spellings can vary (or be slightly incorrect) based on a combination of free text and standard text in some variables, so the standard NODUPKEY or sort with FIRST or LAST in data steps do not work correctly.&lt;/P&gt;</description>
    <pubDate>Mon, 12 Feb 2018 17:56:17 GMT</pubDate>
    <dc:creator>Doug____</dc:creator>
    <dc:date>2018-02-12T17:56:17Z</dc:date>
    <item>
      <title>Fuzzy logic to locate duplicates?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436294#M108515</link>
      <description>&lt;P&gt;How can fuzzy logic be used to locate duplicate records in a single dataset? I have records where spellings can vary (or be slightly incorrect) based on a combination of free text and standard text in some variables, so the standard NODUPKEY or sort with FIRST or LAST in data steps do not work correctly.&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 17:56:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436294#M108515</guid>
      <dc:creator>Doug____</dc:creator>
      <dc:date>2018-02-12T17:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy logic to locate duplicates?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436303#M108516</link>
      <description>&lt;P&gt;This is a non-trivial problem.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One factor is the number of comparisons required, because you're now required to compare each record to all other records you're trying to match to, so it becomes a N*M comparison.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can look at the following functions for starter:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;COMPGED&lt;/P&gt;
&lt;P&gt;SOUNDEX/SOUNDS LIKE&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/10429"&gt;@Doug____&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;How can fuzzy logic be used to locate duplicate records in a single dataset? I have records where spellings can vary (or be slightly incorrect) based on a combination of free text and standard text in some variables, so the standard NODUPKEY or sort with FIRST or LAST in data steps do not work correctly.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&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>Mon, 12 Feb 2018 18:26:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436303#M108516</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-02-12T18:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy logic to locate duplicates?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436493#M108549</link>
      <description>&lt;P&gt;I prefer using SPEDIS() function which gives a score on the likelihood of two variables.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SPEDIS(First_name,First_name_match)&amp;lt;5;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;COMPGED is also similar function.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2018 22:29:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436493#M108549</guid>
      <dc:creator>SuryaKiran</dc:creator>
      <dc:date>2018-02-12T22:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy logic to locate duplicates?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436517#M108557</link>
      <description>&lt;P&gt;How many records are you looking at?&lt;/P&gt;
&lt;P&gt;Are there other variables in the data that help identify individuals (date of birth, address, other fields?)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 00:25:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436517#M108557</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-02-13T00:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Fuzzy logic to locate duplicates?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436533#M108562</link>
      <description>&lt;P&gt;I found COMPGED gives more usable results than SPEDIS.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, a&amp;nbsp;good way to limit the size of the cartesian products, if applicable, it to match on similar lengths and on identical starting letter(s).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 02:22:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Fuzzy-logic-to-locate-duplicates/m-p/436533#M108562</guid>
      <dc:creator>ChrisNZ</dc:creator>
      <dc:date>2018-02-13T02:22:26Z</dc:date>
    </item>
  </channel>
</rss>

