<?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 to categorize the typo err value apart from WHERE clause in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-categorize-the-typo-err-value-apart-from-WHERE-clause/m-p/476255#M122530</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/215282"&gt;@Sathish_jammy&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;You need to somehow standardize your data using some mechanism to group/cluster values with similar strings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are quite a few discussions and solution approaches around such "typo" problems in this forum.&lt;/P&gt;
&lt;P&gt;To start with use search terms like:&amp;nbsp;&lt;SPAN&gt;SPEDIS&lt;/SPAN&gt;, &lt;SPAN&gt;COMPGED&lt;/SPAN&gt;, FUZZY&amp;nbsp; ...and I'm sure the posts you find with these terms will give you ideas for other search terms you could use as well.&lt;/P&gt;</description>
    <pubDate>Sun, 08 Jul 2018 03:46:36 GMT</pubDate>
    <dc:creator>Patrick</dc:creator>
    <dc:date>2018-07-08T03:46:36Z</dc:date>
    <item>
      <title>How to categorize the typo err value apart from WHERE clause</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-categorize-the-typo-err-value-apart-from-WHERE-clause/m-p/475360#M122235</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/*in the list of Cards - first one is exact word, followup are have typo err.*/

data CATEGORY;
input MODE :$20;
cards;			
A.VELOCITY
A.VALOSITY
A.VELOCIY
B.HYDROCHLORIC&amp;nbsp;
B.HYDRRACLORIK
B.HYDROCLOKIK
C.GEOMETRY
C.GEMENTRY
run;
/* the above dataset is just for an example */&lt;BR /&gt;&lt;BR /&gt;/* I have a table in SQL with same kind of problem, As now just keep on eye with cards */ &lt;BR /&gt;
proc sql;
update CATEGORY
set Column2 = 'physics'
where MODE =* 'A.VELOCITY';
run;

proc sql;
update CATEGORY
set Column2 = 'chemistry'
where MODE =* 'B.HYDROCLORIC';
run;

proc sql;
update CATEGORY
set Column2 = 'maths'
where MODE =* 'C.GEOMENTRY';
run;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;/*Is there any effective way to resolve this than some other methods in SAS */&lt;BR /&gt;/*I don't care about the initial (A. B. C.) but i need to focus on methods(velocity geometry hydrochloric)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MY MAJOR CONCERN ON CATEGORIZING "TYPO ERR"&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jul 2018 06:31:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-categorize-the-typo-err-value-apart-from-WHERE-clause/m-p/475360#M122235</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2018-07-04T06:31:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to categorize the typo err value apart from WHERE clause</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-categorize-the-typo-err-value-apart-from-WHERE-clause/m-p/476255#M122530</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/215282"&gt;@Sathish_jammy&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;You need to somehow standardize your data using some mechanism to group/cluster values with similar strings.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There are quite a few discussions and solution approaches around such "typo" problems in this forum.&lt;/P&gt;
&lt;P&gt;To start with use search terms like:&amp;nbsp;&lt;SPAN&gt;SPEDIS&lt;/SPAN&gt;, &lt;SPAN&gt;COMPGED&lt;/SPAN&gt;, FUZZY&amp;nbsp; ...and I'm sure the posts you find with these terms will give you ideas for other search terms you could use as well.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Jul 2018 03:46:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-categorize-the-typo-err-value-apart-from-WHERE-clause/m-p/476255#M122530</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2018-07-08T03:46:36Z</dc:date>
    </item>
  </channel>
</rss>

