<?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: Imputed days after an adverse event stop in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126658#M34768</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant, Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jan 2013 13:10:36 GMT</pubDate>
    <dc:creator>michtka</dc:creator>
    <dc:date>2013-01-30T13:10:36Z</dc:date>
    <item>
      <title>Imputed days after an adverse event stop</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126654#M34764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;I guys, &lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; I would like to only keep the VISIT record 14JAN2009&amp;nbsp; as record imputed to the Adverse Event (START: 07JAN2009, STOP: 07JAN2009) because is the record after the STOP of this Adverse Event , but i am not interested &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;in keep any more days, i.e VISIT day 22FEB2009...because only I am interested in the record after the STOP date of the Adverse Event.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;Any help?&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;Thanks.&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;Please find the code below:&lt;/P&gt;&lt;P class="im" style="color: #500050; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV&gt;data AE;&lt;P&gt;&lt;/P&gt;&lt;P&gt;informat START date9. STOP date9.;&lt;/P&gt;&lt;P&gt;input SUBJID&amp;nbsp; START STOP;&lt;/P&gt;&lt;P&gt;format START STOP date9.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;1 7JAN2009&amp;nbsp; 07JAN2009&lt;/P&gt;&lt;P class="im" style="color: #500050; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV&gt;run;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ASSIGNED;&lt;/P&gt;&lt;P&gt;informat VISIT date9.;&lt;/P&gt;&lt;P&gt;input SUBJID&amp;nbsp; VISIT;&lt;/P&gt;&lt;P&gt;format VISIT date9.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;1 02APR2008 &lt;/P&gt;&lt;P&gt;1 07APR2008 &lt;/P&gt;&lt;P&gt;1 12MAY2008 &lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;1 30JUN2008 &lt;/P&gt;&lt;P class="im" style="color: #500050; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV&gt;1 20OCT2008 &lt;P&gt;&lt;/P&gt;&lt;P&gt;1 01DEC2008&lt;/P&gt;&lt;P&gt;1 22FEB2009&lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;1 14JAN2009 &lt;/P&gt;&lt;P class="im" style="color: #500050; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV&gt;2 27NOV2008&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 08DEC2008&lt;/P&gt;&lt;P&gt;2 22DEC2008 &lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;2 30JAN2009&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;*I start assigned the possibles VISITS to to this Adverse Event;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P class="im" style="color: #500050; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;DIV&gt;run;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROC SQL;&lt;/P&gt;&lt;P&gt;CREATE table temp AS&lt;/P&gt;&lt;P&gt;SELECT a.SUBJID, ae.START, ae.STOP, a.visit , case when a.VISIT BETWEEN ae.START AND ae.STOP then 1 else 0 end as flag&lt;/P&gt;&lt;/DIV&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;FROM ae LEFT join ASSIGNED a ON ae.SUBJID=a.SUBJID&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;ORDER BY a.SUBJID,a.visit&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;QUIT;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;*I start selecting the only visits after the Stop of adverse events...now I get stuck after this point...;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;*Thanks in advance;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;data tempFILTER;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; set temp;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; LAGSTOP=LAG(STOP);&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; LAGVISIT=LAG(VISIT);&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; if (flag=1) or (subjid=lag(subjid) and START=STOP and VISIT GT STOP )&amp;nbsp; then output=1;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt; else output=0;&lt;/P&gt;&lt;P style="color: #222222; font-family: arial, sans-serif; background-color: #ffffff;"&gt;run;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Jan 2013 00:51:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126654#M34764</guid>
      <dc:creator>michtka</dc:creator>
      <dc:date>2013-01-16T00:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Imputed days after an adverse event stop</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126655#M34765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can pull only that record from the adverse event dataset as that is the only visit where the subject got the adverse event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this first you need to create a vistdt(visit start date) and visdt(visit end date). Because you have in adverse event (ae) dataset both the start date and stop date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Consider that the date in the assigned dataset is visit end date, derive the visit start date. Once you derive the visit start date, you will have both the dates(visit start and end) as those available in AE dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use proc sql to create the running records, where you can map the adverse event dates with the visit dates, to check from which visit to which visit the adverse event existed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please follow the below code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data AE;&lt;/P&gt;&lt;P&gt;informat START date9. STOP date9.;&lt;/P&gt;&lt;P&gt;input SUBJID&amp;nbsp; START STOP;&lt;/P&gt;&lt;P&gt;format START STOP date9.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;1 7JAN2009&amp;nbsp; 07JAN2009&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data ASSIGNED;&lt;/P&gt;&lt;P&gt;informat VISIT date9.;&lt;/P&gt;&lt;P&gt;input SUBJID&amp;nbsp; VISIT;&lt;/P&gt;&lt;P&gt;format VISIT date9.;&lt;/P&gt;&lt;P&gt;cards;&lt;/P&gt;&lt;P&gt;1 02APR2008&lt;/P&gt;&lt;P&gt;1 07APR2008&lt;/P&gt;&lt;P&gt;1 12MAY2008&lt;/P&gt;&lt;P&gt;1 30JUN2008&lt;/P&gt;&lt;P&gt;1 20OCT2008&lt;/P&gt;&lt;P&gt;1 01DEC2008&lt;/P&gt;&lt;P&gt;1 22FEB2009&lt;/P&gt;&lt;P&gt;1 14JAN2009&lt;/P&gt;&lt;P&gt;2 27NOV2008&lt;/P&gt;&lt;P&gt;2 08DEC2008&lt;/P&gt;&lt;P&gt;2 22DEC2008&lt;/P&gt;&lt;P&gt;2 30JAN2009&lt;/P&gt;&lt;P&gt;*I start assigned the possibles VISITS to this Adverse Event;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*sort the assigned dataset on subjid and visit(dates)*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=assigned;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by subjid visit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*to create the visid based on the visit(dates), this is necessary to derive the visit start and end dates*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data assigned2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set assigned;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; retain visid;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by subjid;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.subjid then visid=1;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; else visid+1;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*sort by subjid and visid*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sort data=assigned2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by subjid visid;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*to create the visit start date*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data assigned3;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set assigned2;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; by subjid visid;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.visid then visdt=visit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vistdt=lag(visit);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; format visdt vistdt date9.;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if first.subjid then vistdt=visdt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop visit;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*to map the adverse event with the visit dates*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc sql;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; create table run as&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; select a.*,b.visid,b.visdt,b.vistdt from ae as a left join assigned3 as b on a.subjid=b.subjid&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; and ((a.start&amp;lt;=b.vistdt&amp;lt;=a.stop) or&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (a.start&amp;lt;=b.visdt&amp;lt;=a.stop) or&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ((b.vistdt&amp;lt;a.start) and (a.stop &amp;lt; b.visdt)));&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*end*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you will get only one record at visid 7, as the adverse event start and stop date is 7JAN2009 which falls between the visit start (01DEC2008) and visit end date(14JAN2009).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jagadish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2013 10:11:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126655#M34765</guid>
      <dc:creator>Jagadishkatam</dc:creator>
      <dc:date>2013-01-24T10:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Imputed days after an adverse event stop</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126656#M34766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Jagadishkatam!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jan 2013 02:06:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126656#M34766</guid>
      <dc:creator>michtka</dc:creator>
      <dc:date>2013-01-26T02:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: Imputed days after an adverse event stop</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126657#M34767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why not just apply the rules you have described in a simple PROC SQL query&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;having the first visit after the adverse event "stop"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;proc sql _method ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;create table wanted as &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;select&amp;nbsp; e.*, s.visit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; from&amp;nbsp; ae&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; e &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; join&amp;nbsp; assigned&amp;nbsp;&amp;nbsp; s&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; on&amp;nbsp; e.SUBJID = s.SUBJID&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp;&amp;nbsp; and&amp;nbsp; s.visit&amp;nbsp; &amp;gt; e.stop &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;having (s.visit&amp;nbsp; - e.stop) = min(s.visit&amp;nbsp; - e.stop)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;&amp;nbsp; ; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier; font-size: 8pt;"&gt;quit ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;proc sql under the covers will do the sorting and merging for you, so it will probably take just as long as the multiple steps to avoid SQL. However this kind of sql query allows your syntax to appear a lot more like the original question &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: arial,helvetica,sans-serif; font-size: 10pt;"&gt;peterC&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Jan 2013 12:04:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126657#M34767</guid>
      <dc:creator>Peter_C</dc:creator>
      <dc:date>2013-01-26T12:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: Imputed days after an adverse event stop</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126658#M34768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Brilliant, Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2013 13:10:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Imputed-days-after-an-adverse-event-stop/m-p/126658#M34768</guid>
      <dc:creator>michtka</dc:creator>
      <dc:date>2013-01-30T13:10:36Z</dc:date>
    </item>
  </channel>
</rss>

