<?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 number of changes of a categorical variable over time in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517704#M140028</link>
    <description>&lt;P&gt;Thank you both for clean version and quick feedback -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example suggest does not fit my case (at least I think...) here is an output that I was envisioning...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;subject&amp;nbsp; &amp;nbsp;Terms&amp;nbsp; &amp;nbsp; Pgmchange&amp;nbsp; &amp;nbsp;Timeschange&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;Does this make better sense of an output?&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 23:39:40 GMT</pubDate>
    <dc:creator>triunk</dc:creator>
    <dc:date>2018-11-30T23:39:40Z</dc:date>
    <item>
      <title>Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517692#M140022</link>
      <description>&lt;P&gt;Hello: I know we have previously answered that in different versions... My challenge is how to measure changes over time when we include a string(categorical) variable. The goal is how many times a subject changes program ('pgm') over time (terms). Some of the subjects continue for three terms other stopped at two terms.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;DATA example;
 input subject term pgm ~ $1.;
 datalines;
 1 1 a 
 1 2 b
 2 1 a
 2 2 b
 2 3 c
 3 1 a
 3 2 c
run;

proc transpose data=example out=trans;
by subject;
id term;
var pgm;
run;
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;I am not sure how to continue from here...to reach my goal...&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 22:51:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517692#M140022</guid>
      <dc:creator>triunk</dc:creator>
      <dc:date>2018-11-30T22:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517696#M140024</link>
      <description>&lt;P&gt;that posting is hard to read,&amp;nbsp; It is like a run on sentence or an old time NY stock exchange.&lt;/P&gt;
&lt;P&gt;Could you please repost your question in a normal viewable form.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 22:51:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517696#M140024</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-11-30T22:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517697#M140025</link>
      <description>Hi, I edited your question to make it legible. But it would help a lot if you showed what you want as output.</description>
      <pubDate>Fri, 30 Nov 2018 22:55:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517697#M140025</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-30T22:55:38Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517698#M140026</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt; for the clean version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36222"&gt;@triunk&lt;/a&gt; you might find that the solution here fits your case.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-in-variables-over-time/m-p/246652#M46167" target="_blank"&gt;https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-in-variables-over-time/m-p/246652#M46167&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 23:02:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517698#M140026</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-11-30T23:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517704#M140028</link>
      <description>&lt;P&gt;Thank you both for clean version and quick feedback -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example suggest does not fit my case (at least I think...) here is an output that I was envisioning...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;subject&amp;nbsp; &amp;nbsp;Terms&amp;nbsp; &amp;nbsp; Pgmchange&amp;nbsp; &amp;nbsp;Timeschange&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;Does this make better sense of an output?&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 23:39:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517704#M140028</guid>
      <dc:creator>triunk</dc:creator>
      <dc:date>2018-11-30T23:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517706#M140030</link>
      <description>&lt;P&gt;Here's an example then, just count the number of times the PGM is first using FIRST/LAST.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
set have;
by subject term pgm NOTSORTED; *since you can't sort the data the notsorted option will need to be used;
RETAIN pgmChange;

*set at start of each Subject;
if first.subject then pgmChange=-1;

*increment for each change;
if first.pgm then pgmChange+1;

if last.subject then output;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36222"&gt;@triunk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you both for clean version and quick feedback -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example suggest does not fit my case (at least I think...) here is an output that I was envisioning...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;subject&amp;nbsp; &amp;nbsp;Terms&amp;nbsp; &amp;nbsp; Pgmchange&amp;nbsp; &amp;nbsp;Timeschange&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;Does this make better sense of an output?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 23:52:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517706#M140030</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-30T23:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517707#M140031</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36222"&gt;@triunk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you both for clean version and quick feedback -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The example suggest does not fit my case (at least I think...) here is an output that I was envisioning...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;subject&amp;nbsp; &amp;nbsp;Terms&amp;nbsp; &amp;nbsp; Pgmchange&amp;nbsp; &amp;nbsp;Timeschange&lt;/P&gt;
&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&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;Does this make better sense of an output?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You will have to tell us what the heck pgmchange is based on.&lt;/P&gt;
&lt;P&gt;You might also include an example of the output for subject with only one observation and maybe another one or two subjects where the pgm changes back to a previous value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would start with something like:&lt;/P&gt;
&lt;PRE&gt;data want;
   set example;
   by subject;
   retain terms timeschange ;
   lpgm=lag(pgm);
   if first.subject then do;
      timeschange=0;
      terms=1;
   end;
   else do;
      terms+1;
      timeschange= timeschange+(lpgm ne pgm);
   end;
   if last.subject;
   drop term lpgm pgm;
run;&lt;/PRE&gt;
&lt;P&gt;but without a definition of Pgmchange that's as far as I can go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 23:57:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517707#M140031</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-11-30T23:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517708#M140032</link>
      <description>&lt;P&gt;Would proc summary solve your problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;this&amp;nbsp;summary sample is on term&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=example;
by subject;
id term;
var term;
output out=trans (drop= _TYPE_ _FREQ_ _ORGA ) sum()= mean(term)=;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The SAS System&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Obs subject term &lt;BR /&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2 &lt;BR /&gt;2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &lt;BR /&gt;3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;</description>
      <pubDate>Sat, 01 Dec 2018 00:03:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517708#M140032</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-12-01T00:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517709#M140033</link>
      <description>&lt;P&gt;pgmchange is a binary variable with values yes (1) or no(0) if the subject changed program&lt;/P&gt;
&lt;P&gt;and timeschange is how many times the subjects changed program...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am amazed with quick response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please forgive me for my sloppy request. Your feedback helped me clarify.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank&amp;nbsp; you all for your quick response.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 01 Dec 2018 00:06:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517709#M140033</guid>
      <dc:creator>triunk</dc:creator>
      <dc:date>2018-12-01T00:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517710#M140034</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/36222"&gt;@triunk&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;pgmchange is a binary variable with values yes (1) or no(0) if the subject changed program&lt;/P&gt;
&lt;P&gt;and timeschange is how many times the subjects changed program...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am amazed with quick response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please forgive me for my sloppy request. Your feedback helped me clarify.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank&amp;nbsp; you all for your quick response.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;PRE&gt;data want;
   set example;
   by subject;
   retain terms timeschange ;
   lpgm=lag(pgm);
   if first.subject then do;
      timeschange=0;
      terms=1;
   end;
   else do;
      terms+1;
      timeschange= timeschange+(lpgm ne pgm);
   end;
   pgmchange = (timeschage&amp;gt;0);
   if last.subject;
   drop term lpgm pgm;
run;&lt;/PRE&gt;</description>
      <pubDate>Sat, 01 Dec 2018 00:21:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517710#M140034</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-12-01T00:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count number of changes of a categorical variable over time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517712#M140035</link>
      <description>Thank  you so much for your generous help Reeza!</description>
      <pubDate>Sat, 01 Dec 2018 00:55:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-number-of-changes-of-a-categorical-variable-over-time/m-p/517712#M140035</guid>
      <dc:creator>triunk</dc:creator>
      <dc:date>2018-12-01T00:55:28Z</dc:date>
    </item>
  </channel>
</rss>

