<?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: Outliers treatment methods in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293307#M61005</link>
    <description>&lt;PRE&gt;
Yeah.There are many way you can define outliers:

1) [mean-2*std , mean+2*std]  out of this range is outliers.
2) [Q1- 1.5*(Q3-Q1)  ,  Q3 + 1.5*(Q3-Q1)]  out of this range is outliers.
3) Check   proc robustreg  
&lt;/PRE&gt;</description>
    <pubDate>Tue, 23 Aug 2016 02:52:19 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2016-08-23T02:52:19Z</dc:date>
    <item>
      <title>Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293273#M60987</link>
      <description>&lt;P&gt;Hi Everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two tasks for each variable in my dataset:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Find outliers for each variable&lt;/P&gt;
&lt;P&gt;2. Treat the outliers for each variable&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Let me know your comments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 21:45:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293273#M60987</guid>
      <dc:creator>dkanand86</dc:creator>
      <dc:date>2016-08-22T21:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293277#M60991</link>
      <description>&lt;P&gt;Define outlier. There is no actual standard definition, so you'll have to have some rule for that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc univariate may get you started with some ideas.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And what do you mean by "treat" the outliers? There are many approaches some can be pretty complex, others are as simple as set the value to missing or remove the observation from the dataset.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 22:25:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293277#M60991</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-22T22:25:58Z</dc:date>
    </item>
    <item>
      <title>Re: Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293307#M61005</link>
      <description>&lt;PRE&gt;
Yeah.There are many way you can define outliers:

1) [mean-2*std , mean+2*std]  out of this range is outliers.
2) [Q1- 1.5*(Q3-Q1)  ,  Q3 + 1.5*(Q3-Q1)]  out of this range is outliers.
3) Check   proc robustreg  
&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Aug 2016 02:52:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293307#M61005</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-23T02:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293308#M61006</link>
      <description>&lt;PRE&gt;
Here can give you outliers:


proc robustreg data=sashelp.cars method=MM ;
model invoice = /diagnostics;
run;


&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Aug 2016 03:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293308#M61006</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-23T03:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293430#M61069</link>
      <description>&lt;P&gt;For a discussion of detecting univariate outliers, you might want to read&amp;nbsp;&lt;A href="http://blogs.sas.com/content/iml/2012/01/27/detecting-outliers-in-sas-part-2-estimating-scale.html" target="_self"&gt;Detecting outliers in SAS&lt;/A&gt;&amp;nbsp; &amp;nbsp;It explains some of KSharp's suggestions.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Aug 2016 13:49:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293430#M61069</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-23T13:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: Outliers treatment methods</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293596#M61142</link>
      <description>Oh. Don't format the IML function like : LTS() , LTM().....  Rick's blog has already explained it . And Better check the documentation of IML, There is a special chapter to talk about it .</description>
      <pubDate>Wed, 24 Aug 2016 01:43:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Outliers-treatment-methods/m-p/293596#M61142</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-08-24T01:43:02Z</dc:date>
    </item>
  </channel>
</rss>

