<?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: Which Proc should I use to know the number of missing value of character variable? in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495688#M72377</link>
    <description>&lt;P&gt;For a discussion and examples, see the article &lt;A href="https://blogs.sas.com/content/iml/2011/09/19/count-the-number-of-missing-values-for-each-variable.html" target="_self"&gt;"Count the number of missing values for each variable."&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Sep 2018 14:00:25 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2018-09-14T14:00:25Z</dc:date>
    <item>
      <title>Which Proc should I use to know the number of missing value of character variable?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495598#M72365</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know &lt;STRONG&gt;proc means&lt;/STRONG&gt; with &lt;STRONG&gt;N&lt;/STRONG&gt; and &lt;STRONG&gt;Nmiss&lt;/STRONG&gt; option provides the no of populated and missing observation for numeric variable. But which &lt;STRONG&gt;proc/options&lt;/STRONG&gt; we use to know the missing value of character variable ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Lets have the below data set as an example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;data abc;&lt;BR /&gt;input name $ state $;&lt;BR /&gt;datalines;&lt;BR /&gt;a up&lt;BR /&gt;b mp&lt;BR /&gt;c .&lt;BR /&gt;d hp&lt;BR /&gt;e .&lt;BR /&gt;f mp&lt;BR /&gt;. gj&lt;BR /&gt;h hp&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 07:37:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495598#M72365</guid>
      <dc:creator>vishalrajpoot3</dc:creator>
      <dc:date>2018-09-14T07:37:01Z</dc:date>
    </item>
    <item>
      <title>Re: Which Proc should I use to know the number of missing value of character variable?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495604#M72366</link>
      <description>&lt;P&gt;Proc freq with missing option:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_freq_sect016.htm" target="_blank"&gt;https://support.sas.com/documentation/cdl/en/statug/63033/HTML/default/viewer.htm#statug_freq_sect016.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 08:14:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495604#M72366</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2018-09-14T08:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: Which Proc should I use to know the number of missing value of character variable?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495656#M72371</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=abc;
   tables state / missing nocum nopercent;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Sep 2018 12:52:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495656#M72371</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2018-09-14T12:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Which Proc should I use to know the number of missing value of character variable?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495657#M72372</link>
      <description>&lt;P&gt;PROC SQL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data abc;
input name $ state $;
datalines;
a up
b mp
c .
d hp
e .
f mp
. gj
h hp
;
run;
proc sql;
select nmiss(name) as nmiss_name,nmiss(state) as nmiss_state
 from abc;
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Sep 2018 12:53:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495657#M72372</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2018-09-14T12:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Which Proc should I use to know the number of missing value of character variable?</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495688#M72377</link>
      <description>&lt;P&gt;For a discussion and examples, see the article &lt;A href="https://blogs.sas.com/content/iml/2011/09/19/count-the-number-of-missing-values-for-each-variable.html" target="_self"&gt;"Count the number of missing values for each variable."&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Sep 2018 14:00:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Which-Proc-should-I-use-to-know-the-number-of-missing-value-of/m-p/495688#M72377</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2018-09-14T14:00:25Z</dc:date>
    </item>
  </channel>
</rss>

