/*-------------------------------------------------------------------------------------*\
| scdm_data_qa_review-enrollment.sas |
|---------------------------------------------------------------------------------------|
| The purpose of this program is to perform data quality checks on the Enrollment |
|---------------------------------------------------------------------------------------|
| see 00.0_scdm_data_qa_review_master_file.sas |
|---------------------------------------------------------------------------------------|
| Sentinel Coordinating Center |
| info@sentinelsystem.org |
\*-------------------------------------------------------------------------------------*/
*-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-;
* PLEASE DO NOT EDIT BELOW WITHOUT CONTACTING THE SENTINEL OPERATIONS CENTER ;
*-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-;
/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
/* aggregate patient counts by age in days cat at enrollment start */
%if &do_partitions and not %eval(&module in &tabid_exc) %then %do ;
data t_view /view=t_view ;
set qadata.&DEMTABLE.: (keep = patid birth_date) ;
%let qa_table = qadata.&DEMTABLE. (keep = patid birth_date) ;
/* pull earliest enr_start per patient */
create table dplocal._enr_start1 as
, min(enr_start) as _min_enr_start
from dplocal.l2_nodup_enr (keep = patid enr_start medcov where=(upcase(medcov)='Y'))
/* join to demographics to calculate and group age in days at enrollment start */
create table dplocal._agedays_enr_start1 as
, a._min_enr_start - b.birth_date as _ageDays
, put(calculated _agedays, agecat_days.) as agedays_group
from dplocal._enr_start1 as a
/* aggregate and save as final version */
create table msoc.&module._l2_enrstart_agedayscat as
select put(_min_enr_start,year4.) as Year
, count(distinct patid) as count
from dplocal._agedays_enr_start1
group by calculated year, agedays_group
order by calculated year, agedays_group;
/* clean work directory of temp files */
drop table dplocal._enr_start1;
drop table dplocal._agedays_enr_start1;
/*-------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------*/
create table dplocal.&module._temp_enr_start as