****************************************************************************************************
****************************************************************************************************
* PROGRAM: attrition_createdata.sas
* Created (mm/dd/yyyy): 05/13/2021
*--------------------------------------------------------------------------------------------------
* PURPOSE: This macro transforms and manipulates attrition table data to be output
* - agg_patient_attrition
* - agg_episode_attrition
*--------------------------------------------------------------------------------------------------
* Sentinel Coordinating Center
* info@sentinelsystem.org
***************************************************************************************************;
%macro attrition_createdata;
/* Link all required groups from inputfiles */
%isdata(dataset=master_t2addon)
%let t2addonnobs = &nobs;
%isdata(dataset=master_mil);
%isdata(dataset=master_inclusioncodes);
create table attrition_groups as
select distinct a.runid, a.group
%if &t2addonnobs > 0 %then %do; , b.primary, b.secondary %end;
%if &milnobs > 0 %then %do; ,b.groupname %end;
%if &t2addonnobs > 0 %then %do;
left join master_t2addon b
on a.group = b.group and a.runid = b.runid
%if &milnobs > 0 %then %do;
on a.group = b.group and a.runid = b.runid
%if &milnobs > 0 %then %do;
/* Create EOI/REF rows based off MIL group */
if missing(groupname) then output;
if not missing(groupname) then do;
group=catx('_',group,'ref');
if substrn(group,max(1,length(group)-3),4) = '_ref' then group=tranwrd(group,'_ref','_eoi');
/* Rejoin to attrition groups table to only keep relevant MIL groups */
proc sql noprint undo_policy=none;
select quote(strip(group))
where substrn(group,max(1,length(group)-3),4) in ('_eoi','_ref');
select distinct quote(substr(group,1,findc(group, '_',-length(group))-1))
where substrn(group,max(1,length(group)-3),4) in ('_eoi','_ref');
/* Join only required groups to attrition table */