<?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: Replacing outliers with missing values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87360#M18684</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you DN and Tom for your wisdom! Now I get it! - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Jan 2013 14:56:11 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2013-01-28T14:56:11Z</dc:date>
    <item>
      <title>Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87349#M18673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello wise people, I wonder if there is a better way to remove outliers from a dataset than this. I would particularly like to get rid of the special missing value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dataset &lt;STRONG&gt;myData&lt;/STRONG&gt; contains variables &lt;STRONG&gt;date&lt;/STRONG&gt; and &lt;STRONG&gt;station&lt;/STRONG&gt; which identify observations uniquely. It also contains many numeric variables such as&lt;STRONG&gt; cond&lt;/STRONG&gt;,&lt;STRONG&gt; c_org_diss&lt;/STRONG&gt;, &lt;STRONG&gt;C_inor_diss&lt;/STRONG&gt;, etc. I create another dataset &lt;STRONG&gt;outliersList&lt;/STRONG&gt; with variables &lt;STRONG&gt;date&lt;/STRONG&gt; and &lt;STRONG&gt;station&lt;/STRONG&gt; and the name of the variable which should be set to missing. Here is what I have :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;data outliersList;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;format date yymmdd10.;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;length var $32;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;input date :yymmdd10. station $ var $;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;value = .X;&amp;nbsp;&amp;nbsp; /* Special missing value */&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;datalines;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2009-07-17 BSF-1 C_inor_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2009-07-17 BSF-1 C_org_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2009-07-17 BSF-2 C_inor_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2009-07-17 BSF-2 C_org_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2010-05-17 BSF-3 cond&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2010-07-07 BSF-2 C_inor_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;2010-07-07 BSF-2 C_org_diss&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;proc transpose data=outliersList out=outliersUpdate(drop=_NAME_);&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;by date station;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;id var;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;var value;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;data myData;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;update myData outliersUpdate;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&gt;by date station;&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif;"&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>Sat, 26 Jan 2013 22:34:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87349#M18673</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-26T22:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87350#M18674</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi PG,&lt;/P&gt;&lt;P&gt;sorry,I am not wise enough to understand your question:smileysilly::smileyconfused::smileyblush:. You say "&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.800000190734863px; background-color: #ffffff;"&gt; I would particularly like to get rid of the special missing value.", then you let &lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif; background-color: #ffffff;"&gt;value = .X;&amp;nbsp;&amp;nbsp; /* Special missing value */&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't you get a lot of .X after you run your code?&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif; background-color: #ffffff;"&gt;data myData;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif; background-color: #ffffff;"&gt;update myData outliersUpdate;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif; background-color: #ffffff;"&gt;by date station;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12pt; font-family: calibri, verdana, arial, sans-serif; background-color: #ffffff;"&gt;run;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jan 2013 23:43:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87350#M18674</guid>
      <dc:creator>Linlin</dc:creator>
      <dc:date>2013-01-26T23:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87351#M18675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Linlin, I get .X only at the places where outliers were removed. But I would rather have "normal" missing values in those places.&amp;nbsp; - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 00:42:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87351#M18675</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-27T00:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87352#M18676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your first step replace the .X with regular missing. Then use the UPDATEMODE=nomissingcheck option on the UPDATE statement.&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002645456.htm"&gt;http://support.sas.com/documentation/cdl/en/basess/58133/HTML/default/viewer.htm#a002645456.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 04:08:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87352#M18676</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-01-27T04:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87353#M18677</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Tom, but that would'n work. It would create an update dataset filled with missing values, the ones corresponding to my desired changes and the ones created by proc transpose. The update step would then zap all variables mentioned in the update dataset for all observations that match. That's not what I want. I want to zap only one variable per line in the update dataset. That's why I use the special missing value; it is treated differently than the missing values generated by transpose. - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 04:26:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87353#M18677</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-27T04:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87354#M18678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can just replace the .X with . by looping over all of your numeric variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; update master transactions ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; array x _numeric_;&lt;/P&gt;&lt;P&gt;&amp;nbsp; do over x ;&amp;nbsp; if x=.X then x=.; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when we used to use actual transaction datasets 30 years ago we always used special missing ._ (dot underscore) to convert a value to missing.&amp;nbsp; Checking the documentation you can see why:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;SPAN style="color: #000000; font-family: arial, 'Arial Unicode MS', geneva, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;If you want the resulting value in the master data set to be a regular missing value, use a single underscore (_) to represent missing values in the transaction data set. The resulting value in the master data set will be a period (.) for missing numeric values and a blank for missing character values.&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 04:28:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87354#M18678</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-01-27T04:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87355#M18679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're right. That is a simple solution. Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 05:00:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87355#M18679</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-27T05:00:12Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87356#M18680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm confused.&amp;nbsp; Wouldn't it be better for PGStats to just change VALUE=.X to VALUE=._;&amp;nbsp; Then you don't need loop on array.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 27 Jan 2013 14:39:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87356#M18680</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-27T14:39:37Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87357#M18681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, this special missing values business can rapidly become very messy. I would rather avoid it entirely. Tom's idea brings me back to safe ground and I like that. Look at this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data _null_;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;y = ._;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;if y = . &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; then put "Yippee!";&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; else put "Bummer!";&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; They would look the same, have the same meaning and yet not be equal. A recipe for cryptic errors. Frightening!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 03:07:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87357#M18681</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-28T03:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87358#M18682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;._ updates non missing to . "standard missing" in the new master.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards to you out of context example.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;17&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; data _null_;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;18&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; y = &lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;._&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;19&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if missing(y)&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;20&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; then put &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"Yippee!"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;21&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; else put &lt;/SPAN&gt;&lt;SPAN style="color: #800080; background-color: #ffffff;"&gt;"Bummer!"&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #008080; background-color: #ffffff;"&gt;22&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; run;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; background-color: #ffffff;"&gt;Yippee&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 11:47:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87358#M18682</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2013-01-28T11:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87359#M18683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use ._ in the TRANSACTION file the values they replace will become regular missing in the result dataset.&amp;nbsp; So it saves having to convert them yourself.&amp;nbsp; You want to be able to distinguish between the missing and the special missing in the transaction dataset.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 14:50:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87359#M18683</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2013-01-28T14:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Replacing outliers with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87360#M18684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you DN and Tom for your wisdom! Now I get it! - PG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jan 2013 14:56:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Replacing-outliers-with-missing-values/m-p/87360#M18684</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2013-01-28T14:56:11Z</dc:date>
    </item>
  </channel>
</rss>

