<?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 Missing values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346390#M79875</link>
    <description>&lt;P&gt;Hi All.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data file which has many columns.&lt;/P&gt;&lt;P&gt;A lot of variable have 0 as values.&lt;/P&gt;&lt;P&gt;I need to find which are the top &amp;nbsp;variables that will be problematic because of the presence of a lot of 0’s?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vishyy&lt;/P&gt;</description>
    <pubDate>Sat, 01 Apr 2017 12:17:06 GMT</pubDate>
    <dc:creator>vishyy</dc:creator>
    <dc:date>2017-04-01T12:17:06Z</dc:date>
    <item>
      <title>Missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346390#M79875</link>
      <description>&lt;P&gt;Hi All.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a data file which has many columns.&lt;/P&gt;&lt;P&gt;A lot of variable have 0 as values.&lt;/P&gt;&lt;P&gt;I need to find which are the top &amp;nbsp;variables that will be problematic because of the presence of a lot of 0’s?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Vishyy&lt;/P&gt;</description>
      <pubDate>Sat, 01 Apr 2017 12:17:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346390#M79875</guid>
      <dc:creator>vishyy</dc:creator>
      <dc:date>2017-04-01T12:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346391#M79876</link>
      <description>&lt;P&gt;make use of&amp;nbsp; proc frequency for this. you will hv 2 go thru the syntax ol.&amp;nbsp; this proc will answer your questn.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Apr 2017 12:31:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346391#M79876</guid>
      <dc:creator>kk5</dc:creator>
      <dc:date>2017-04-01T12:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346394#M79879</link>
      <description>&lt;P&gt;It will be easier if you create a format to group other values. &amp;nbsp;For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc format;&lt;/P&gt;
&lt;P&gt;value posneg&amp;nbsp;low-&amp;lt;0 = 'Negative' 0='Zero' 0-high='Positive';&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=have;&lt;/P&gt;
&lt;P&gt;tables _numeric_ / missing;&lt;/P&gt;
&lt;P&gt;format _numeric_ posneg.;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That way, you won't have to sort through huge tables with potentially thousands of different values for each variable.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Apr 2017 12:54:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-values/m-p/346394#M79879</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2017-04-01T12:54:07Z</dc:date>
    </item>
  </channel>
</rss>

