<?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: Suggest other ways of creating a frequency variable in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136307#M27616</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one runs a little slower, but it's an attractive option since everything is in one package.&amp;nbsp; It's very tempting to use because of that.&amp;nbsp; For my immediate project, I'll stick with one fellows suggestion, but your proc sql code is going to help me in some adhoc stuff.&amp;nbsp; I like it!&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like that you spotted my comment in the code about not requiring the data be ordered &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2014 22:24:10 GMT</pubDate>
    <dc:creator>jaredp</dc:creator>
    <dc:date>2014-04-28T22:24:10Z</dc:date>
    <item>
      <title>Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136299#M27608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm hoping to benefit from your expertise to learn of new approaches to my solution below.&amp;nbsp; The solution below works for me, although the proc tabulate feels a little slow at times on my larger data sets.&amp;nbsp; Perhaps doing the entire solution in proc sql could be faster?&amp;nbsp; But what would that look like?&amp;nbsp; Or maybe a hash solution could be used here?&amp;nbsp; Any thoughts or code is appreciated.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;input name $;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;P&gt;jane&lt;/P&gt;&lt;P&gt;jack&lt;/P&gt;&lt;P&gt;jill&lt;/P&gt;&lt;P&gt;jenn&lt;/P&gt;&lt;P&gt;jeff&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;P&gt;john&lt;/P&gt;&lt;P&gt;jill&lt;/P&gt;&lt;P&gt;jenn&lt;/P&gt;&lt;P&gt;jack&lt;/P&gt;&lt;P&gt;jack&lt;/P&gt;&lt;P&gt;jane&lt;/P&gt;&lt;P&gt;jack&lt;/P&gt;&lt;P&gt;jack&lt;/P&gt;&lt;P&gt;jane&lt;/P&gt;&lt;P&gt;jenn&lt;/P&gt;&lt;P&gt;jenn&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* the frequency of the name is put into the totalcount variable */&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data want; /*sorted or unsorted doesn't really matter*/&lt;/P&gt;&lt;P&gt;input name $ totalcount;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;john 3&lt;/P&gt;&lt;P&gt;jane 3&lt;/P&gt;&lt;P&gt;jack 5&lt;/P&gt;&lt;P&gt;jill 2&lt;/P&gt;&lt;P&gt;jenn 4&lt;/P&gt;&lt;P&gt;jeff 1&lt;/P&gt;&lt;P&gt;john 3&lt;/P&gt;&lt;P&gt;john 3&lt;/P&gt;&lt;P&gt;jill 2&lt;/P&gt;&lt;P&gt;jenn 4&lt;/P&gt;&lt;P&gt;jack 5&lt;/P&gt;&lt;P&gt;jack 5&lt;/P&gt;&lt;P&gt;jane 3&lt;/P&gt;&lt;P&gt;jack 5&lt;/P&gt;&lt;P&gt;jack 5&lt;/P&gt;&lt;P&gt;jane 3&lt;/P&gt;&lt;P&gt;jenn 4&lt;/P&gt;&lt;P&gt;jenn 4&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc tabulate data=have out=haveN order=freq;/*order=data will sort by name*/&lt;/P&gt;&lt;P&gt;class name;&lt;/P&gt;&lt;P&gt;tables name, N;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;/*&amp;nbsp;&amp;nbsp; 'Inner Join';*/&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; select h.*, hn.N&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have as h, haveN as hn&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where h.name=hn.name;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 16:54:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136299#M27608</guid>
      <dc:creator>jaredp</dc:creator>
      <dc:date>2014-04-28T16:54:00Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136300#M27609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's one way using a Proc Freq and a Proc SQL.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc freq data=have order=data noprint;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; tables name / missing nocum nopercent out=havecount;&lt;BR /&gt;run;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR /&gt; &lt;/P&gt;&lt;P&gt;proc sql;&lt;BR /&gt;&amp;nbsp; drop table work.haveboth;&lt;BR /&gt;&amp;nbsp; CREATE TABLE work.haveboth as&lt;BR /&gt;&amp;nbsp; SELECT a.name, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (select distinct count from work.havecount as b&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where a.name = b.name) as count&lt;BR /&gt;&amp;nbsp; FROM work.have as a &lt;BR /&gt;&amp;nbsp;&amp;nbsp; ;&lt;BR /&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 17:19:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136300#M27609</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-04-28T17:19:54Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136301#M27610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it a count of the names occurrence in the data base that you're looking for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select a.name, b.count&lt;/P&gt;&lt;P&gt;from have as a&lt;/P&gt;&lt;P&gt;left join (select name, count(*) as count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by name) as b&lt;/P&gt;&lt;P&gt;on a.name=b.name;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 17:35:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136301#M27610</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-04-28T17:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136302#M27611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reeza,&lt;/P&gt;&lt;P&gt;Your query does not retain the original order of the data in "WANT".&amp;nbsp; Please see my question at &lt;A _jive_internal="true" href="https://communities.sas.com/thread/57291"&gt;https://communities.sas.com/thread/57291&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 17:51:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136302#M27611</guid>
      <dc:creator>jwillis</dc:creator>
      <dc:date>2014-04-28T17:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136303#M27612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would not choose TABULATE for simple summary such as this unless I wanted the printed output.&amp;nbsp; You can experiment with performance difference between the SQL and KEYed SET.&lt;/P&gt;&lt;DIV style="font-family: Courier New; font-size: 11pt;"&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;proc&lt;/STRONG&gt; &lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;summary&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;data&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=have &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;nway&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;class&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; name;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;output&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;out&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=haven(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;drop&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=_type_ &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;rename&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=(_freq_=totalcount) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;index&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=(name)); &lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;data&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; want;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; have;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;set&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt; haveN &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;key&lt;/SPAN&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;=name/&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; background-color: #ffffff;"&gt;unique&lt;/SPAN&gt;; &lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style="color: #000080; background-color: #ffffff;"&gt;run&lt;/STRONG&gt;&lt;SPAN style="color: #000000; background-color: #ffffff;"&gt;;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 18:16:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136303#M27612</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2014-04-28T18:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136304#M27613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A __default_attr="831243" __jive_macro_name="user" class="jive_macro jive_macro_user" data-objecttype="3" href="https://communities.sas.com/"&gt;&lt;/A&gt; The question specifically stated:&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote" modifiedtitle="true"&gt;
&lt;P&gt;jaredp wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;data want; /*sorted or unsorted doesn't really matter*/&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As posted in the thread you referenced, if you need ordered, then you'll have to create an order variable first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set have;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; order=_n_;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create table want as&lt;/P&gt;&lt;P&gt;select a.name, b.count&lt;/P&gt;&lt;P&gt;from have as a&lt;/P&gt;&lt;P&gt;left join (select name, count(*) as count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; from have&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; group by name) as b&lt;/P&gt;&lt;P&gt;on a.name=b.name&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; order by a.order;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 19:54:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136304#M27613</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2014-04-28T19:54:51Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136305#M27614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, I had a longer response, but I timed out because I was busy testing everyone's code suggestions with my actual data.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's a good point about not using Tabulate.&amp;nbsp; In truth, I used it because at the time I only had to copy, paste and tweak some of my existing code from another SAS program.&amp;nbsp; I admit I was being lazy, but isn't that one of the traits of being a programmer?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm looking now at putting this into a more production environment, so that's why optimizing is important.&amp;nbsp; For me (or at least in the environment I work in), part of optimization takes into account code maintenance.&amp;nbsp; Not only is your solution speedy with my data set, it's also easy on the eyes for good code maintenance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 22:15:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136305#M27614</guid>
      <dc:creator>jaredp</dc:creator>
      <dc:date>2014-04-28T22:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136306#M27615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Although I selected the other response as the correct answer, using proc freq actually seems to be slightly faster than proc summary.&amp;nbsp; Both are faster than proc tabulate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I think I'll be using your proc freq suggestion.&amp;nbsp; It's funny I didn't use proc freq in the first place, since it's the one I normally use.&amp;nbsp; But back when I did this code, I was, admittedly, being lazy (or pressured for results...I can't remember). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 22:19:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136306#M27615</guid>
      <dc:creator>jaredp</dc:creator>
      <dc:date>2014-04-28T22:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Suggest other ways of creating a frequency variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136307#M27616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one runs a little slower, but it's an attractive option since everything is in one package.&amp;nbsp; It's very tempting to use because of that.&amp;nbsp; For my immediate project, I'll stick with one fellows suggestion, but your proc sql code is going to help me in some adhoc stuff.&amp;nbsp; I like it!&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like that you spotted my comment in the code about not requiring the data be ordered &lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://communities.sas.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2014 22:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Suggest-other-ways-of-creating-a-frequency-variable/m-p/136307#M27616</guid>
      <dc:creator>jaredp</dc:creator>
      <dc:date>2014-04-28T22:24:10Z</dc:date>
    </item>
  </channel>
</rss>

