<?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 to find a maximum value while restricting number of rows in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249680#M56548</link>
    <description>&lt;P&gt;How are the 30 data sets to be processed? &amp;nbsp;Separately,&amp;nbsp;as one?. &amp;nbsp;Did you see my reply to your duplicate question? &amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Feb 2016 14:40:40 GMT</pubDate>
    <dc:creator>data_null__</dc:creator>
    <dc:date>2016-02-12T14:40:40Z</dc:date>
    <item>
      <title>How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249585#M56534</link>
      <description>&lt;DIV class="lia-message-body"&gt;&lt;DIV class="lia-message-body-content"&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am trying to develop a code that find the maximum value in a range of 1800 rows and subsequently condenses the data down to that one row, and then move on to the next 1800 and do the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Overall I have about 30 data sets, each of which has over 10 million rows, so am trying to use PROC SQL or PROC EXPAND as opposed to data step processing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;For example:&lt;/P&gt;&lt;P&gt;Proc expand factor (1:1800);&lt;/P&gt;&lt;P&gt;convert z=a / transformout ( max ) ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can someone provide some help? Using SAS EG 9.4&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;- jkurka&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 12 Feb 2016 03:53:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249585#M56534</guid>
      <dc:creator>jkurka</dc:creator>
      <dc:date>2016-02-12T03:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249606#M56535</link>
      <description>I'm not familiar with proc expand, so I can't value that option. &lt;BR /&gt;But by chunking up the data into 1800 Obs pieces, it sounds that a data step is most optimal way to do it. It requires only one pass of the data. You could  embed this logic on macro if need to apply this logic to many data sets.&lt;BR /&gt;May I ask how the outcome will be used?</description>
      <pubDate>Fri, 12 Feb 2016 07:20:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249606#M56535</guid>
      <dc:creator>LinusH</dc:creator>
      <dc:date>2016-02-12T07:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249624#M56539</link>
      <description>&lt;P&gt;I would agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH﻿&lt;/a&gt;&amp;nbsp;here, sounds like datastep would be the best way to go. &amp;nbsp;You may also do it in a couple of steps such like:&lt;/P&gt;
&lt;PRE&gt;data want;
  set have;
  group=floor(_n_/1600);
run;

proc sort data=want;
  by group descending value;
run;

data want;
  set want;
  by group;
  if first.group;
run;&lt;/PRE&gt;
&lt;P&gt;However, what if there is more than one row with the same value?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 10:48:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249624#M56539</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-02-12T10:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249650#M56541</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/45151"&gt;@RW9&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;I would agree with&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13674"&gt;@LinusH&lt;/a&gt;&amp;nbsp;here, sounds like datastep would be the best way to go. &amp;nbsp;You may also do it in a couple of steps such like:&lt;/P&gt;
&lt;PRE&gt;data want;
  set have;
  group=floor(_n_/1600);
run;

proc sort data=want;
  by group descending value;
run;

data want;
  set want;
  by group;
  if first.group;
run;&lt;/PRE&gt;
&lt;P&gt;However, what if there is more than one row with the same value?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You don't take into account the 10 million rows, you are suggesting a lot of reading and writing.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;This question has been asked twice with the second asking mentioning the desire to have the observation number.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 13:12:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249650#M56541</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-02-12T13:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249671#M56545</link>
      <description>&lt;P&gt;Yes I posted under another different subsection of the SAS community. This is an example of what I'd like to do, but as data_null__ wrote, I need the max of 1800 rows for over 10 million rows per dataset, with at least 30 datasets. I don't need the observation number itself. If I could get by with processing every &lt;EM&gt;k&lt;/EM&gt; rows that would be great!&lt;/P&gt;&lt;P&gt;rows&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/P&gt;&lt;P&gt;1&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; 0&lt;/P&gt;&lt;P&gt;2&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; 2&lt;/P&gt;&lt;P&gt;3&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; 4&lt;/P&gt;&lt;P&gt;4&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; 1&lt;/P&gt;&lt;P&gt;5&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; 4&lt;/P&gt;&lt;P&gt;6&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; 2&lt;/P&gt;&lt;P&gt;7&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; 0&lt;/P&gt;&lt;P&gt;8&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; 5&lt;/P&gt;&lt;P&gt;9&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; 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like my output to show:&lt;/P&gt;&lt;P&gt;row&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var&lt;/P&gt;&lt;P&gt;1&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; 4 &amp;nbsp;&amp;nbsp; --&amp;gt; max of first set of 3&lt;/P&gt;&lt;P&gt;4&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; 4&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt; max of next set of 3&lt;/P&gt;&lt;P&gt;7&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; 5&amp;nbsp;&amp;nbsp;&amp;nbsp; --&amp;gt; max of next set 3&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:31:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249671#M56545</guid>
      <dc:creator>jkurka</dc:creator>
      <dc:date>2016-02-12T14:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249675#M56546</link>
      <description>&lt;P&gt;A data step is going to take too long to process this over 10 million rows and at least 30 datasets won't it? The output variable will be matched to a time variable then plotted.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:32:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249675#M56546</guid>
      <dc:creator>jkurka</dc:creator>
      <dc:date>2016-02-12T14:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249678#M56547</link>
      <description>&lt;P&gt;Datastep is likely to be faster than SQL. &amp;nbsp;However looking at your response, even taking the max of 1800 records is still going to give you 16666.xy points to plot, do you think its a good idea/even possible to plot that amount of data out to a graph? &amp;nbsp;What is this data, can you subdivide it into smaller groupings, subject level, visit level, test or something? &amp;nbsp;Why the 1800 records for instance? &amp;nbsp;why the max, if that is the case can you not means your data by the subgroups and plot the result from that?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:39:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249678#M56547</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-02-12T14:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249680#M56548</link>
      <description>&lt;P&gt;How are the 30 data sets to be processed? &amp;nbsp;Separately,&amp;nbsp;as one?. &amp;nbsp;Did you see my reply to your duplicate question? &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:40:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249680#M56548</guid>
      <dc:creator>data_null__</dc:creator>
      <dc:date>2016-02-12T14:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249683#M56549</link>
      <description>&lt;P&gt;This data is a person's movement. Movement is collected 30x per second and it's typical to compress that data into 1-min epochs (hence the 1800 = 30x/sec * 60 sec) and using the peak (maximum) value of that 1-min epoch. The 7 days worth of data per person results in over 10 million rows. I have the syntax prepared, and they are typically segemented into multiple graphs, each with only 48 hours worth of data.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 14:45:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249683#M56549</guid>
      <dc:creator>jkurka</dc:creator>
      <dc:date>2016-02-12T14:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249691#M56551</link>
      <description>&lt;P&gt;Ok, well I assume some things with your data, but if it just blocking out into time segments what about:&lt;/P&gt;
&lt;PRE&gt;/* Create some test data */
data have;
  call streaminit(123);
  do pt=1 to 2;
    do time="01JAN2015T00:00"dt to "05JAN2015T00:00"dt;
      do i=1 to 30;
        res=rand('normal');
        output;
      end;
    end;
  end;
  format time datetime.;
run;

data want (drop=end_time res i);
  set have;
  retain max_res end_time;
  by pt;
  if first.pt then do;
    max_res=0;
    end_time=time+"00:01"t;
  end;
  if res &amp;gt; max_res then max_res=res;
  if time = end_time or last.pt then do;
    output;
    end_time=time+"00:01"t;
  end;
run;
&lt;/PRE&gt;
&lt;P&gt;This gets the max value per 1 minute blocks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 15:00:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249691#M56551</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2016-02-12T15:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249694#M56552</link>
      <description>&lt;P&gt;&lt;BR /&gt;/*&lt;BR /&gt;* Breaking down a sql solution to this problem...&lt;BR /&gt;* just for fun... !!!&lt;BR /&gt;*&lt;BR /&gt;* You have to have a sequence number on the data for this to work&lt;/P&gt;&lt;P&gt;* (even if you don't want one!)&lt;BR /&gt;* which maybe means you have to pass the data once to prepare&lt;BR /&gt;* unless you already have a sequence number&lt;BR /&gt;*&lt;BR /&gt;* You compute a panel, which is the sequence number modulo your batch size: 1800&lt;BR /&gt;*/&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;data new_copy ;&lt;BR /&gt;set old_copy ;&lt;BR /&gt;seq=_n_ ;&lt;BR /&gt;panel=MOD(_n_,10) ;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;*&lt;BR /&gt;* Then proc sql and group by that panel.&lt;BR /&gt;*&lt;BR /&gt;*/&lt;BR /&gt;proc sql;&lt;BR /&gt;select panel ,max(value) as max_value&lt;BR /&gt;from new_copy&lt;BR /&gt;group by panel&lt;BR /&gt;order by 1,2&lt;BR /&gt;;&lt;BR /&gt;quit ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;* When you need to get the sequence number of the actual row that has the max value,&lt;BR /&gt;* add the sequence number into the aggregate function as&lt;BR /&gt;* in the second proc sql below.&lt;BR /&gt;* In the presence of duplicatoin, this will end up choosing that LAST occurance of that max value...&lt;BR /&gt;*/&lt;BR /&gt;proc sql;&lt;BR /&gt;create table get_these as&lt;BR /&gt;select panel ,max(CATX(',',put(value,Z9.),put(seq,Z9.))) as max_value&lt;BR /&gt;from new_copy&lt;BR /&gt;group by panel&lt;BR /&gt;order by 1,2&lt;BR /&gt;;&lt;BR /&gt;quit ;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;/*&lt;BR /&gt;* then you can match that data set back to your original data&lt;BR /&gt;* to get the whole row. Up to you!&lt;BR /&gt;*&lt;BR /&gt;* but whatever process you choose, most likely the data - however large -&lt;BR /&gt;* must either be passed multiple times, or else held in memory in total...&lt;BR /&gt;*&lt;BR /&gt;*/&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 15:07:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249694#M56552</guid>
      <dc:creator>johnsville</dc:creator>
      <dc:date>2016-02-12T15:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249701#M56553</link>
      <description>&lt;P&gt;Thank you for your post on the other thread!&lt;/P&gt;&lt;P&gt;%let epoch=1800 ;&lt;BR /&gt;DATA DATA_SVM / view=DATA_SVM ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;set data_nostamps ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;minute + mod(_n_,&amp;amp;epoch) eq 1 ;&lt;BR /&gt;RUN;&lt;BR /&gt;PROC SUMMARY data= DATA_SVM ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;by minute ;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;output out=DATA_1minEPOCHS_&amp;amp;id idgroup(max(flt_z) obs out(x--flt_z)=);&lt;/P&gt;&lt;P&gt;RUN;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This worked great! And was faster than I expected. Much appreciated!&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 15:23:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249701#M56553</guid>
      <dc:creator>jkurka</dc:creator>
      <dc:date>2016-02-12T15:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to find a maximum value while restricting number of rows</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249818#M56558</link>
      <description>&lt;P&gt;Are we making too much of a relatively easy problem? &amp;nbsp;Wouldn't this do a sufficient job (and be blazingly fast)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;key = _n_;&lt;/P&gt;
&lt;P&gt;do i=1 to 1800 until (done);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;set have end=done;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;maxvar = max(var, maxvar);&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;drop i;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Feb 2016 21:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/How-to-find-a-maximum-value-while-restricting-number-of-rows/m-p/249818#M56558</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-02-12T21:02:44Z</dc:date>
    </item>
  </channel>
</rss>

