<?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 means simple question in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16401#M3012</link>
    <description>Thanks.But i have to get column name 'Label' above pulse,bpsystolic and bpdiastolic</description>
    <pubDate>Mon, 20 Jun 2011 15:53:16 GMT</pubDate>
    <dc:creator>sonyk</dc:creator>
    <dc:date>2011-06-20T15:53:16Z</dc:date>
    <item>
      <title>Proc means simple question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16399#M3010</link>
      <description>Hi &lt;BR /&gt;
&lt;BR /&gt;
 I have to tabulate the N,mean,stddev of acess data set. My code for that is below&lt;BR /&gt;
&lt;BR /&gt;
proc means data=Sasuser.ClinicalExam nonobs n mean stddev maxdec=2;&lt;BR /&gt;
label pulse = 'pulse'&lt;BR /&gt;
         Bpsytolic = 'Systolic BP'&lt;BR /&gt;
         BpDiastolic = 'Diastolic BP';&lt;BR /&gt;
Var pulse bpsys bpdias;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
My result is having 5 columns :&lt;BR /&gt;
&lt;BR /&gt;
variable label N mean stddev&lt;BR /&gt;
&lt;BR /&gt;
but i shud have only the below in result :&lt;BR /&gt;
&lt;BR /&gt;
Label N Mean Stddev&lt;BR /&gt;
&lt;BR /&gt;
how to ignore Variable column fro the result ?</description>
      <pubDate>Fri, 17 Jun 2011 16:35:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16399#M3010</guid>
      <dc:creator>sonyk</dc:creator>
      <dc:date>2011-06-17T16:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: Proc means simple question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16400#M3011</link>
      <description>Quickest would be to use Tabulate:&lt;BR /&gt;
&lt;BR /&gt;
Proc tabulate data=Sasuser.ClinicalExam ;&lt;BR /&gt;
label pulse = 'pulse'&lt;BR /&gt;
Bpsytolic = 'Systolic BP'&lt;BR /&gt;
BpDiastolic = 'Diastolic BP';&lt;BR /&gt;
Var pulse bpsys bpdias;&lt;BR /&gt;
&lt;BR /&gt;
table pulse bpsys bpdias, n mean*f=f10.2 stddev*f=f10.2;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Also,since you don't have and CLASS variables you don't need the NONOBS in your MEANS example.</description>
      <pubDate>Fri, 17 Jun 2011 17:16:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16400#M3011</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2011-06-17T17:16:29Z</dc:date>
    </item>
    <item>
      <title>Re: Proc means simple question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16401#M3012</link>
      <description>Thanks.But i have to get column name 'Label' above pulse,bpsystolic and bpdiastolic</description>
      <pubDate>Mon, 20 Jun 2011 15:53:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16401#M3012</guid>
      <dc:creator>sonyk</dc:creator>
      <dc:date>2011-06-20T15:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Proc means simple question</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16402#M3013</link>
      <description>table pulse bpsys bpdias, n mean*f=f10.2 stddev*f=f10.2 &lt;BR /&gt;
      /box='Label';&lt;BR /&gt;
&lt;BR /&gt;
will put Label at the top of the column of variables.</description>
      <pubDate>Mon, 20 Jun 2011 19:23:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Proc-means-simple-question/m-p/16402#M3013</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2011-06-20T19:23:35Z</dc:date>
    </item>
  </channel>
</rss>

