<?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: count consecutive variables, with replacement in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308784#M66310</link>
    <description>&lt;P&gt;Thanks--I want the data/values to be retained for duplications lasting &amp;gt;10 days but I want all duplications &amp;lt;=10 days to be set to "1" (the value for that day).&amp;nbsp; The beta duplications (as well as the additional aspirin duplications &amp;lt;10 days) would be set to 1.&amp;nbsp; Does that make sense?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 02 Nov 2016 16:48:56 GMT</pubDate>
    <dc:creator>kstolzmann</dc:creator>
    <dc:date>2016-11-02T16:48:56Z</dc:date>
    <item>
      <title>count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308778#M66307</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I have a SAS problem that&amp;nbsp;is sending me down a black hole.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have medication duplication data that looks like this:&lt;/P&gt;
&lt;PRE&gt;data have;
	input scrssn drugname $ day1-day48;
	datalines ;
	99999999 aspirin 0 0 0 0 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 3 3 0 0 0
	99999999 beta 0 0 0 0 0 0 0 0 0 0 1 1 1 3 3 3 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0
	;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each day that is &amp;gt;=2 should be counted as a medication duplication.&amp;nbsp; However, we only want to count a duplication where it lasts &amp;gt;10 (consecutive) days.&amp;nbsp; So, the only duplication should be from day 11-24 for aspirin&amp;nbsp;(since it's &amp;gt;10).&amp;nbsp; What I ideally want is for my data to look like this, where all duplications &amp;lt;=10 days are set to "1":&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;data want;
	input scrssn drugname $ iday1-iday48;
	datalines ;
	99999999 aspirin 0 0 0 0 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0
	99999999 beta 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0
	;
run;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;Any help/ideas would be most welcome--thank you!&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;Kelly&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 16:28:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308778#M66307</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T16:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308781#M66308</link>
      <description>&lt;P&gt;Not sure I understand what you want. &amp;nbsp;Are looking for RUNS of non-negative values of length 10 or more? &amp;nbsp;Why did you change the values from 2 or 3 to 1 for BETA? &amp;nbsp;Why didn't you do the same for the ASPIRIN records?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 16:38:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308781#M66308</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-11-02T16:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308783#M66309</link>
      <description>&lt;P&gt;Do you only have 48 days to work with?&lt;/P&gt;
&lt;P&gt;You need to provide more information on your data and the issues you're facing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There's a term called 'medicine cabinet' when looking at drug analysis.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually you break it out to each day and what drugs would be in a persons 'cabinet' and then do analysis from that point on. Typically, the structure is a long format rather than wide, which makes it easier to do analysis as to how many drugs per day and durations of drugs.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 16:46:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308783#M66309</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-11-02T16:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308784#M66310</link>
      <description>&lt;P&gt;Thanks--I want the data/values to be retained for duplications lasting &amp;gt;10 days but I want all duplications &amp;lt;=10 days to be set to "1" (the value for that day).&amp;nbsp; The beta duplications (as well as the additional aspirin duplications &amp;lt;10 days) would be set to 1.&amp;nbsp; Does that make sense?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 16:48:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308784#M66310</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T16:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308787#M66312</link>
      <description>&lt;P&gt;Yes, thanks, I have more data than 48 days but wanted to simplify&amp;nbsp;for the example.&amp;nbsp;&amp;nbsp;Previously I had counted a duplication as any day &amp;gt;=2 (and I go on to flip the data to wide and identify episodes, etc.) but I need to go back now and eliminate any "duplication" &amp;lt;=10 days.&amp;nbsp; I was trying to preserve the dataset so I could use my old code (but eliminate any string of days of duplication &amp;lt;=10 days&amp;nbsp;and&amp;nbsp;set the value of each such days&amp;nbsp;to 1).&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 16:59:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308787#M66312</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T16:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308788#M66313</link>
      <description>&lt;P&gt;You haven't identified how you identified episodes &amp;gt;=2?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps that code can be modified to fit the &amp;gt;=10 situation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We still don't have enough information to provide any answers to you.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:03:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308788#M66313</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-11-02T17:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308792#M66316</link>
      <description>&lt;P&gt;You need to define the term 'duplicates' more fully as it is not clear what you want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Why did you convert this run of 19 non-zero values from the "beta" row to all ones? Is it because only 5 in a row are greater than 1? &amp;nbsp;is it because the longest run of a single value is the last 10 days of 1's?&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1 1 1 3 3 3 2 2 1 1 1 1 1 1 1 1 1 1&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;But not convert this run of 21&amp;nbsp;non-zero values from the "aspirin" row to all ones? &amp;nbsp;It looks to me like the longest run of any single value is only 3 days. &amp;nbsp;Are you ignoring it because there are 15 days in a row that are greater than 1?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:18:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308792#M66316</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-11-02T17:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308794#M66317</link>
      <description>&lt;P&gt;Thanks, yes, maybe? My starting dataset is dispensed med-level data and I use an array to create the day1-day48 using "dispensed date" and "days supply".&amp;nbsp; Then I use proc means&amp;nbsp;to sum the days (day1-day48)&amp;nbsp;by ssn and drugname to get a count of the number of drugs on each day (so any day &amp;gt;=2 would be a medication duplication).&amp;nbsp; Except now the problem is I don't want to count&amp;nbsp;it as a duplication unless there are more than 10 consecutive days&amp;nbsp;(i.e. more than 10 days of &amp;gt;=2 when looking at the summed day1-day48 data--the "have" dataset).&amp;nbsp; There could be multiple duplication episodes within the same drug (as in the aspirin example) but the only one that would "count" (now) would be that one&amp;nbsp;episode lasting &amp;gt;10 days.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:27:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308794#M66317</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T17:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308796#M66318</link>
      <description>&lt;P&gt;Since the changes all involve the data values that comprise runs of shorter than 10 days, it's probably a good approach to identify those:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;array day {48};&lt;/P&gt;
&lt;P&gt;do k=1 to 48;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; if day{k} &amp;gt; 1 then do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if begin_at=. then begin_at = k;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end_at=k;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if k=48 and (end_at - begin_at &amp;lt;= 10) then do j=begin_at to end_at;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; day{j}=1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; else if begin_at &amp;gt; . then do;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (end_at - begin_at) &amp;lt;= 10 then do j=begin_at to end_at;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; day{j}=1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; begin_at=.;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; end_at=.;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;
&lt;P&gt;end;&lt;/P&gt;
&lt;P&gt;drop j k begin_at end_at;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's untested, but looks like it should work.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:30:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308796#M66318</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2016-11-02T17:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308799#M66320</link>
      <description>&lt;P&gt;Yes, I converted the run of 19 non-zero values from the "beta" row to all ones &amp;nbsp;because only 5 in a row are greater than 1.&amp;nbsp; Basically I want to retain the values of the duplication (so, keeping the 2, 3, 4, etc. values as in the aspirin example) but only if the duplication (a&amp;nbsp;consecutive string of values &amp;gt;=2) are more than 10 days; otherwise I would ideally like to set the values of &amp;gt;=2 to 1.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:32:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308799#M66320</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T17:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308805#M66324</link>
      <description>&lt;P&gt;Easier to work with it in tall skinny format. You can use PROC TRANSPOSE or other methods to convert. &amp;nbsp;Make a new variable DUPLICATE to indicate if the count is greater than 1 for this record.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input scrssn drugname $ @ ;
  do day=1 to 48 ;
      input count @;
      duplicate = (count &amp;gt; 1);
      output;
  end;
cards;
99999999 aspirin 0 0 0 0 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 3 3 0 0 0
99999999 beta 0 0 0 0 0 0 0 0 0 0 1 1 1 3 3 3 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Then you could use a double DOW loop over the runs. &amp;nbsp;First will count the run length. Second can apply your transformation rule.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want ;
  do until (last.duplicate);
    set have ;
    by scrssn drugname duplicate notsorted;
    runlength=sum(runlength,duplicate);
  end;
  do until (last.duplicate);
    set have ;
    by scrssn drugname duplicate notsorted;
    if runlength &amp;lt; 10 then count=min(count,1);
    output;
  end;  
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 18:06:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308805#M66324</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2016-11-02T18:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308809#M66326</link>
      <description>&lt;P&gt;Here is one try,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
	input scrssn drugname $ day1-day48;
	datalines;
	99999999 aspirin 0 0 0 0 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 3 3 0 0 0
	99999999 beta 0 0 0 0 0 0 0 0 0 0 1 1 1 3 3 3 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0
	;
run;

data want;
	set have;
	array d(48) day:;
	do i=1 to dim(d);
		if d(i)&amp;gt;=2 then
			flag+1;
		else
			do;
				if 0&amp;lt;flag&amp;lt;=10 then
					do j=i-flag to i-1;
						d(j)=1;
					end;

				flag=0;
			end;
	end;

	drop i j flag;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Nov 2016 17:51:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308809#M66326</guid>
      <dc:creator>Haikuo</dc:creator>
      <dc:date>2016-11-02T17:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308849#M66339</link>
      <description>&lt;P&gt;Thank you (all)!&amp;nbsp; This is exactly what I was hoping to do (but didn't know how to do).&amp;nbsp; Thanks for bearing with me through my muddled question asking, too.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Nov 2016 19:17:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308849#M66339</guid>
      <dc:creator>kstolzmann</dc:creator>
      <dc:date>2016-11-02T19:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: count consecutive variables, with replacement</title>
      <link>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308936#M66376</link>
      <description>&lt;PRE&gt;
Similar with Tom 's code.


data have;
	input scrssn drugname $ day1-day48;
	datalines ;
	99999999 aspirin 0 0 0 0 0 0 0 1 1 1 2 2 2 3 3 3 4 4 4 3 3 3 2 2 2 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 3 3 0 0 0
	99999999 beta 0 0 0 0 0 0 0 0 0 0 1 1 1 3 3 3 2 2 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 2 2 1 1 1 1 1 1 1 1 1 0 0 0 0 0
	;
run;
proc transpose data=have out=temp;
by scrssn drugname;
var day:;
run;
data temp;
 set temp;
 flag=(col1 ge 2);
run;
data temp1;
n=0;
 do until(last.flag);
  set temp;
  by scrssn drugname flag notsorted;
  n+1;
 end;
 _flag=flag;
 do until(last.flag);
  set temp;
  by scrssn drugname flag notsorted;
  if _flag=1 then do;
     if n gt 10 then do;date=col1;output;end;
      else do;date=flag;output;end;
  end;
  else do;date=col1;output;end;
 end;
run;
proc transpose data=temp1 out=want;
by scrssn drugname;
var date;
id _name_;
run;


&lt;/PRE&gt;</description>
      <pubDate>Thu, 03 Nov 2016 05:33:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/count-consecutive-variables-with-replacement/m-p/308936#M66376</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2016-11-03T05:33:26Z</dc:date>
    </item>
  </channel>
</rss>

