<?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: How do I omit &amp;quot;_TYPE_&amp;quot; and &amp;quot;_FREQ_&amp;quot; from a proc means output in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863760#M38166</link>
    <description>&lt;P&gt;Note that data set options are available pretty much anywhere you have a data set used for input or output.&lt;/P&gt;
&lt;P&gt;The options would go in () immediately following the set name. In this case you want to DROP variables but you can do a number of other things. It is worth looking at the documentation as these are extremely useful.&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 11:32:32 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2023-03-13T11:32:32Z</dc:date>
    <item>
      <title>How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863700#M38162</link>
      <description>&lt;P&gt;I tried to type stuff like nofreq or notype, but that didnt work like how noobs would&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hz16g22_0-1678659846312.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/81399i04C192ABB9C8E655/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hz16g22_0-1678659846312.png" alt="hz16g22_0-1678659846312.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;this is the code&lt;/P&gt;&lt;PRE&gt;10   proc means data=amphibians noprint;
11       var Green_frogs Brown_frogs Common_toad Fire_bellied_toad
12           Tree_frog Common_newt Great_crested_newt;
13       output out=Number_Of_Species_Observed sum= / ;
14       title "Number of Species Observed";
15   run;&lt;/PRE&gt;</description>
      <pubDate>Sun, 12 Mar 2023 22:25:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863700#M38162</guid>
      <dc:creator>hz16g22</dc:creator>
      <dc:date>2023-03-12T22:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863703#M38164</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc means data=amphibians noprint;
  var Green_frogs Brown_frogs Common_toad Fire_bellied_toad
       Tree_frog Common_newt Great_crested_newt;
  output out=Number_Of_Species_Observed (drop = _type_ _freq_) sum= / ;
  title "Number of Species Observed";
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 12 Mar 2023 22:53:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863703#M38164</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2023-03-12T22:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863754#M38165</link>
      <description>&lt;P&gt;Or even simpler:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt; output out=Number_Of_Species_Observed (drop = _:) sum= ;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 13 Mar 2023 10:16:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863754#M38165</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-03-13T10:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863760#M38166</link>
      <description>&lt;P&gt;Note that data set options are available pretty much anywhere you have a data set used for input or output.&lt;/P&gt;
&lt;P&gt;The options would go in () immediately following the set name. In this case you want to DROP variables but you can do a number of other things. It is worth looking at the documentation as these are extremely useful.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 11:32:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863760#M38166</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-03-13T11:32:32Z</dc:date>
    </item>
    <item>
      <title>Re: How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863782#M38168</link>
      <description>&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Just to know, what does the colon mean in this case? cos it seems like it would work the same if i put a "%" instead, or does not work?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 13:24:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863782#M38168</guid>
      <dc:creator>hz16g22</dc:creator>
      <dc:date>2023-03-13T13:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I omit "_TYPE_" and "_FREQ_" from a proc means output</title>
      <link>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863788#M38169</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/439764"&gt;@hz16g22&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Just to know, what does the colon mean in this case? cos it seems like it would work the same if i put a "%" instead, or does not work?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The colon in &lt;FONT face="courier new,courier"&gt;(drop=_:)&lt;/FONT&gt; indicates all variables whose names that begin with an underscore. Had I typed something different, such as &lt;FONT face="courier new,courier"&gt;(drop=age:)&lt;/FONT&gt; the colon indicates all variables whose names begin with age. You can use the colon any place where SAS can accept a list of variable names. It also works on SAS data set names.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 13:53:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/How-do-I-omit-quot-TYPE-quot-and-quot-FREQ-quot-from-a-proc/m-p/863788#M38169</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-03-13T13:53:35Z</dc:date>
    </item>
  </channel>
</rss>

