<?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: Basic description of many variables in one Proc command. in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360692#M64433</link>
    <description>&lt;P&gt;Just to add&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;, as they have not provided the dataset (as always), we are guessing that there is only those variables in there. &amp;nbsp;It may be simpler if there are other numeric variables to take:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;means&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;sashelp&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;  var&lt;/SPAN&gt; client:&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Alkthough of course if there are other variables with client prefix then that is also a problem&lt;/P&gt;</description>
    <pubDate>Tue, 23 May 2017 11:57:43 GMT</pubDate>
    <dc:creator>RW9</dc:creator>
    <dc:date>2017-05-23T11:57:43Z</dc:date>
    <item>
      <title>Basic description of many variables in one Proc command.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360687#M64430</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 30+ variables called client1, client2, client3, etc. I would like to see a basic description of these variables (no of obs, mean, min, max, etc.) but using only one PROC command, so I don't have to type it up 30+ times.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How would I do this efficiently?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;K.&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 11:32:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360687#M64430</guid>
      <dc:creator>GKati</dc:creator>
      <dc:date>2017-05-23T11:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Basic description of many variables in one Proc command.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360689#M64431</link>
      <description>&lt;P&gt;Like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select variables;
proc contents data = sashelp.cars;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 May 2017 11:47:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360689#M64431</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2017-05-23T11:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: Basic description of many variables in one Proc command.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360690#M64432</link>
      <description>&lt;P&gt;proc means:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=sashelp.class;
var _numeric_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you need more statistics, add them in the proc means statement.&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 11:47:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360690#M64432</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2017-05-23T11:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Basic description of many variables in one Proc command.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360692#M64433</link>
      <description>&lt;P&gt;Just to add&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt;, as they have not provided the dataset (as always), we are guessing that there is only those variables in there. &amp;nbsp;It may be simpler if there are other numeric variables to take:&lt;/P&gt;
&lt;PRE class=" language-sas"&gt;&lt;CODE class="  language-sas"&gt;&lt;SPAN class="token procnames"&gt;proc&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;means&lt;/SPAN&gt; &lt;SPAN class="token procnames"&gt;data&lt;/SPAN&gt;&lt;SPAN class="token operator"&gt;=&lt;/SPAN&gt;sashelp&lt;SPAN class="token punctuation"&gt;.&lt;/SPAN&gt;&lt;SPAN class="token statement"&gt;class&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token keyword"&gt;  var&lt;/SPAN&gt; client:&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="token procnames"&gt;run&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;Alkthough of course if there are other variables with client prefix then that is also a problem&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 11:57:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360692#M64433</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-05-23T11:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Basic description of many variables in one Proc command.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360693#M64434</link>
      <description>&lt;P&gt;Thanks for your help. I have other variables as well, but only those with the prefix client.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;K.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 May 2017 12:00:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Basic-description-of-many-variables-in-one-Proc-command/m-p/360693#M64434</guid>
      <dc:creator>GKati</dc:creator>
      <dc:date>2017-05-23T12:00:31Z</dc:date>
    </item>
  </channel>
</rss>

