<?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: Proc Summary  with missing values in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36081#M9060</link>
    <description>Thanks for the information</description>
    <pubDate>Wed, 23 Mar 2011 14:52:29 GMT</pubDate>
    <dc:creator>srisai</dc:creator>
    <dc:date>2011-03-23T14:52:29Z</dc:date>
    <item>
      <title>Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36075#M9054</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I have written proc sumamry code for getting descriptive statistics, my resultant dataset consists some missing values(numerica variables) and i replaced them with zeros...........by using options missing='0' before the proc statement.&lt;BR /&gt;
So could you please let me know whether the method which i am following is giving expected results ot not?&lt;BR /&gt;
Please confirm.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;BR /&gt;
Sri</description>
      <pubDate>Tue, 22 Mar 2011 20:39:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36075#M9054</guid>
      <dc:creator>srisai</dc:creator>
      <dc:date>2011-03-22T20:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36076#M9055</link>
      <description>Hi,&lt;BR /&gt;
Can you describe your situation a bit more?  Where are you seeing missing values (for class variables or summary statistics)? What PROC summary code did you submit?&lt;BR /&gt;
Keep in mind: the missing option does not replace missing values, it just changes how they are displayed.&lt;BR /&gt;
--Q.</description>
      <pubDate>Wed, 23 Mar 2011 00:17:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36076#M9055</guid>
      <dc:creator>Quentin</dc:creator>
      <dc:date>2011-03-23T00:17:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36077#M9056</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
I am seeing the missing values for analysis variables.&lt;BR /&gt;
Here u go,&lt;BR /&gt;
&lt;BR /&gt;
Proc summary data=dsn nway missing;&lt;BR /&gt;
class var;&lt;BR /&gt;
var var;&lt;BR /&gt;
output out=dsn1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
after running this code some of my analysis varaibles are having blanks i.e. .(dot).Here i want to fill the .(dot) with zero's.&lt;BR /&gt;
Please advice.</description>
      <pubDate>Wed, 23 Mar 2011 13:38:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36077#M9056</guid>
      <dc:creator>srisai</dc:creator>
      <dc:date>2011-03-23T13:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36078#M9057</link>
      <description>Hello Srisai,&lt;BR /&gt;
&lt;BR /&gt;
Please give us an example of your data. Are you sure that class var; and var var; in you code is what you need?&lt;BR /&gt;
&lt;BR /&gt;
Sincerely,&lt;BR /&gt;
SPR</description>
      <pubDate>Wed, 23 Mar 2011 13:55:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36078#M9057</guid>
      <dc:creator>SPR</dc:creator>
      <dc:date>2011-03-23T13:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36079#M9058</link>
      <description>Hi,&lt;BR /&gt;
&lt;BR /&gt;
Just i gave var as variables respectively for class and var.&lt;BR /&gt;
i ahve actegorical variables in class and contuniuous variables for var.&lt;BR /&gt;
Here i have some missing values for continuous variables.&lt;BR /&gt;
&lt;BR /&gt;
Thanks,</description>
      <pubDate>Wed, 23 Mar 2011 13:58:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36079#M9058</guid>
      <dc:creator>srisai</dc:creator>
      <dc:date>2011-03-23T13:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36080#M9059</link>
      <description>Hello,&lt;BR /&gt;
&lt;BR /&gt;
SAS help states that "PROC MEANS excludes missing values for the analysis variables before calculating statistics". I believe that it is also true for proc SUMMARY. So, if you need that your missing values of analysis variables have been treated as zeroes it is necessary to replace them with zeroes in a separate datastep before proc SUMMARY.&lt;BR /&gt;
&lt;BR /&gt;
SPR</description>
      <pubDate>Wed, 23 Mar 2011 14:17:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36080#M9059</guid>
      <dc:creator>SPR</dc:creator>
      <dc:date>2011-03-23T14:17:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc Summary  with missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36081#M9060</link>
      <description>Thanks for the information</description>
      <pubDate>Wed, 23 Mar 2011 14:52:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-Summary-with-missing-values/m-p/36081#M9060</guid>
      <dc:creator>srisai</dc:creator>
      <dc:date>2011-03-23T14:52:29Z</dc:date>
    </item>
  </channel>
</rss>

