Changeset 1043
- Timestamp:
- 11/04/08 15:08:57 (2 months ago)
- Files:
-
- trunk/ibisq/module/birth/AdolBirth.def (modified) (1 diff)
- trunk/ibisq/module/birth/AdolBirth_old.def (added)
- trunk/ibisq/module/birth/Birth.cfg (modified) (2 diffs)
- trunk/ibisq/module/birth/BirthSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/birth/FertRate.def (modified) (1 diff)
- trunk/ibisq/module/birth/TotalFertRate.def (modified) (1 diff)
- trunk/ibisq/module/brfss/AsthEver.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdj.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdjHighLowSame.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdjHighLowSameRace.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdjQuartile.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdjQuartileRace.def (added)
- trunk/ibisq/module/brfss/AsthEverAgeAdjRace.def (added)
- trunk/ibisq/module/brfss/AsthEverHighLowSame.def (added)
- trunk/ibisq/module/brfss/AsthEverQuartile.def (added)
- trunk/ibisq/module/brfss/BRFSS.cfg (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColon.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdj.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSame.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSameRace.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdjQuartile.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdjQuartileRace.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonAgeAdjRace.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonHighLowSame.def (modified) (1 diff)
- trunk/ibisq/module/brfss/SigmColonQuartile.def (modified) (1 diff)
- trunk/ibisq/module/comdis/ComDis.cfg (modified) (3 diffs)
- trunk/ibisq/module/comdis/Count.def (modified) (2 diffs)
- trunk/ibisq/module/comdis/CountByWMY.def (added)
- trunk/ibisq/module/comdis/Rate.def (modified) (3 diffs)
- trunk/ibisq/module/ed/ED.cfg (modified) (1 diff)
- trunk/ibisq/module/ed/EDSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/edpcsc/EDPCSC.cfg (modified) (1 diff)
- trunk/ibisq/module/edpcsc/EDPCSCSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/fetmort/FetMort.cfg (modified) (1 diff)
- trunk/ibisq/module/hddb/HDDB.cfg (modified) (2 diffs)
- trunk/ibisq/module/hddb/HDDBSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/infmort/InfMort.cfg (modified) (4 diffs)
- trunk/ibisq/module/infmort/InfMortBirthLink.cfg (modified) (4 diffs)
- trunk/ibisq/module/infmort/InfMortBirthLinkSarea.cfg (modified) (4 diffs)
- trunk/ibisq/module/infmort/InfMortDeathLink.cfg (modified) (3 diffs)
- trunk/ibisq/module/infmort/InfMortDeathLinkSarea.cfg (modified) (3 diffs)
- trunk/ibisq/module/infmort/InfMortSarea.cfg (modified) (2 diffs)
- trunk/ibisq/module/mort/Mort.cfg (modified) (1 diff)
- trunk/ibisq/module/mort/MortSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/pop/Pop.cfg (modified) (1 diff)
- trunk/ibisq/module/pop/PopSarea.cfg (modified) (1 diff)
- trunk/ibisq/module/raceeth/RaceEth.cfg (modified) (1 diff)
- trunk/ibisq/module/ucr/UCR.cfg (modified) (1 diff)
- trunk/ibisq/module/uhas/UHAS.cfg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ibisq/module/birth/AdolBirth.def
r959 r1043 1 f label Teen&birth&rate&per&1,000&females 2 f type rate 3 #f data_where 10<=bmomage<=14 1 f label Fertility&Rate 2 f type special2 3 f data_where dutcnty=1 4 #f data_where 15<=bmomage<=44 5 f pop_where sex=2&and&year>=1989 6 ######################################### 7 --------BoNdArY-------- 8 1 script 9 10 proc summary data=tmp; 11 where %cross1%^=99 12 ?cross2? and %cross2%^=99 13 ; 14 var x; 15 class %cross1% %cross2%; 16 output out=tmp sum=number; 17 run; 18 19 proc print data=tmp; 20 title 'tmp'; 21 run; 22 23 proc summary data=poptmp; 24 var popcount; 25 class %popcross1% %popcross2%; 26 output out=pop sum=popnum; 27 run; 28 proc sql; 29 create table rate as 30 select tmp.*, pop.* 31 from tmp, pop 32 where tmp.%cross1%=pop.%popcross1% 33 ?cross2? and tmp.%cross2%=pop.%popcross2% 34 35 ; 36 quit; 37 38 proc print data=rate; 39 title 'rate'; 40 run; 41 42 data tmp; 43 set rate; 44 rate=number/popnum; 45 stdev=1.96*sqrt(rate*(1-rate)/popnum); 46 t1=(rate-stdev)*1000; 47 if (t1<0) then t1=0; 48 r1=put(t1, 8.2); 49 r2=put((rate+stdev)*1000, 8.2); 50 rate=rate*1000; 51 r1=compress(r1); 52 r2=compress(r2); 53 ci=r1 || ' - ' || r2; 54 n=number; 55 keep %cross1% %cross2% rate n popnum ci r1 r2; 56 run; 57 --------BoNdArY-------- 58 f out_variable rate 59 ########changed 10/15/04######################################### 60 # definition for output file 4 61 f xml_out_map_file XMLRateNumerDenomLCLUCL.map 62 --------BoNdArY-------- 5 63 f out_detail lbl_not_used__see_xml_out_map_file 6 f multiple 1000 7 f pop_where sex=2&and&1989<=year<=2007 8 f pop_count popcount 64 rate 15.2 65 n 15.0 66 popnum 15.0 67 r1 15.2 68 r2 15.2 69 --------BoNdArY-------- trunk/ibisq/module/birth/Birth.cfg
r959 r1043 26 26 d saspop /srv/ibis-q/sasData/final 27 27 d sasdata nbirth 28 d saspopdata pop_y2k_2008 28 d saspopdata pop_y2k_2008_7_23 29 29 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 30 30 r pop_where 1989<=year<=2007 … … 107 107 2 occur BirthOccurProxy dist Geographic&Area num 10 4 108 108 58 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 109 58 rs_ut BirthOccurResUt dutcntyAll&Resident&Births&that&Occured&in&Utah num 0 5110 58 occur BirthOccurUt dutcntyAll&Births&that&Occured&in&Utah num 0 5109 58 rs_ut BirthOccurResUt rs_ut All&Resident&Births&that&Occured&in&Utah num 0 5 110 58 occur BirthOccurUt occur All&Births&that&Occured&in&Utah num 0 5 111 111 112 112 58 bocccnty GeoOccurCnty rescnty All&Births&that&Occured&in&Utah num 0 5 trunk/ibisq/module/birth/BirthSarea.cfg
r959 r1043 23 23 d sasdata nbirth 24 24 ###Small area pop data with mage group updated 2003### 25 d saspopdata smarea_2008 25 d saspopdata smarea_2008_7_23 26 26 ###Limit Year in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 27 27 r pop_where 1990<=year<=2007 trunk/ibisq/module/birth/FertRate.def
r959 r1043 1 1 f label Fertility&Rate 2 f type rate2 f type special2 3 3 f xml_out_map_file XMLRateNumerDenomLCLUCL.map 4 f out_detail lbl_not_used__see_xml_out_map_file5 f multiple 10006 4 f data_where dutcnty=1 7 f pop_count popcount 8 f pop_where sex=2&and&1989<=year<=2007 5 f data_where 15<=bmomage<=44 6 f pop_where sex=2&and&year>=1989 7 ######################################### 8 --------BoNdArY-------- 9 1 script 10 11 proc summary data=tmp; 12 where %cross1%^=99; /*avoid 99 get into total but excluded from the list since sql"*/ 13 var x; 14 class %cross1% %cross2%; 15 output out=tmp sum=number; 16 run; 17 18 proc print data=tmp; 19 title 'tmp'; 20 run; 21 22 proc summary data=poptmp; 23 var popcount; 24 class %popcross1% %popcross2%; 25 output out=pop sum=popnum; 26 run; 27 proc sql; 28 create table rate as 29 select tmp.*, pop.* 30 from tmp, pop 31 where tmp.%cross1%=pop.%popcross1% 32 ?cross2? and tmp.%cross2%=pop.%popcross2% 33 34 ; 35 quit; 36 37 proc print data=rate; 38 title 'rate'; 39 run; 40 41 data tmp; 42 set rate; 43 rate=number/popnum; 44 stdev=1.96*sqrt(rate*(1-rate)/popnum); 45 t1=(rate-stdev)*1000; 46 if (t1<0) then t1=0; 47 r1=put(t1, 8.2); 48 r2=put((rate+stdev)*1000, 8.2); 49 rate=rate*1000; 50 r1=compress(r1); 51 r2=compress(r2); 52 ci=r1 || ' - ' || r2; 53 n=number; 54 keep %cross1% %cross2% rate n popnum ci r1 r2; 55 run; 56 --------BoNdArY-------- 57 f out_variable rate 58 ########changed 10/15/04######################################### 59 # definition for output file 60 f xml_out_map_file XMLRateNumerDenomLCLUCL.map 61 --------BoNdArY-------- 62 f out_detail lbl_not_used__see_xml_out_map_file 63 rate 15.2 64 n 15.0 65 popnum 15.0 66 r1 15.2 67 r2 15.2 68 --------BoNdArY-------- 69 trunk/ibisq/module/birth/TotalFertRate.def
r959 r1043 2 2 f type special 3 3 f data_where 15<=bmomage<=44 4 f data_where dutcnty=1 4 5 f pop_where sex=2 5 6 #&and&15<=age<=44 trunk/ibisq/module/brfss/BRFSS.cfg
r975 r1043 106 106 32 mental7 MentHlthPast30Day null Mental&health&past&30&days num 0 3 107 107 32 asthdef AsthNow null Asthma&diagnosed&by&doctor num 0 3 108 32 asthma AsthEver null Asthma&diagnosed&by&doctor num 0 3 108 109 32 arth ArthDrDiag null Arthritis num 0 3 109 110 32 rchol AwareHighChol null High&cholesterol&awareness num 0 3 trunk/ibisq/module/brfss/SigmColon.def
r536 r1043 2 2 f type special_survey 3 3 f include TotalCrudeSurv.sas 4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 5 5 #f pop_where sex=1 6 6 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdj.def
r959 r1043 2 2 f type special_survey 3 3 f include TotalSurvAdj40+.sas 4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 5 5 #f pop_where sex=1 6 6 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSame.def
r959 r1043 3 3 f no_total true 4 4 f include AgeAdjSurvHighLowSame40+.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSameRace.def
r716 r1043 3 3 f no_total true 4 4 f include AgeAdjSurvHighLowSame.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdjQuartile.def
r959 r1043 3 3 f no_total true 4 4 f include AgeAdjSurvQuartile40+.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdjQuartileRace.def
r716 r1043 3 3 f no_total true 4 4 f include AgeAdjSurvQuartile.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/brfss/SigmColonAgeAdjRace.def
r766 r1043 2 2 f type special_survey 3 3 f include TotalSurvAdjRace.sas 4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )4 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 5 5 #f pop_where sex=1 6 6 ######################################### trunk/ibisq/module/brfss/SigmColonHighLowSame.def
r536 r1043 3 3 f no_total true 4 4 f include CrudeSurvHighLowSame.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/brfss/SigmColonQuartile.def
r536 r1043 3 3 f no_total true 4 4 f include CrudeSurvQuartile.sas 5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006 )5 f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007) 6 6 #f pop_where sex=1 7 7 ######################################### trunk/ibisq/module/comdis/ComDis.cfg
r716 r1043 19 19 d saspop /srv/ibis-q/sasData/final/ 20 20 r sasdata comdis 21 d saspopdata pop_y2k_2008 21 d saspopdata pop_y2k_2008_7_23 22 22 r pop_where 1980<=dthyr<=2008 23 23 r sasstdpop morstd … … 31 31 r cross1 DayInterval 32 32 r cross2 none 33 r cross3 none 33 34 r spvar1 none 34 35 r spvar2 none … … 77 78 40 event Event null Event num 0 4 78 79 40 eventtype EventType null Event&Type num 0 4 79 40 year Year year Year num 0 480 81 80 43 stdyr stdpop null Standard&Population num 7 3 82 81 44 dutcnty GeoRes dutcnty Residential&County num 0 5 83 82 40 days Days null days num 0 4 83 1 ageyr TimeIntervalProxy age Age&Group num 10 4 84 44 rptmmwrweek MMWRWeek null Residential&County num 0 5 85 44 rptmon MMWRMonth null Residential&County num 0 5 86 44 rptyear MMWRYear year Residential&County num 0 5 87 44 rptyear Year year Residential&County num 0 5 trunk/ibisq/module/comdis/Count.def
r716 r1043 2 2 f type special 3 3 #added for the order of the date range5/30/07 4 f result_sort by&yr ;4 f result_sort by&yr&month; 5 5 #f data_where event=11060 6 6 # pop_where sex=1&and&15<=age<=44 … … 77 77 data tmp; 78 78 set tmp; 79 yr=substr(dayint,7,4); 79 put dayintx; 80 yr=substr((dayint),18,4); 81 mth=substr((dayint),12,2); 80 82 year=yr+0; 83 month=mth+0; 81 84 if n=. then n=''; 82 85 if dayintx^=. and dayint='' then delete; 83 86 if dayintx=. and dayint^='' then delete; 84 if dayint='' then dayint='All'; 87 *if dayint='' then dayint='All'; 88 if dayint='' then delete; 89 85 90 if n=. then n=0; 91 proc print; 92 var year month; 93 title "sorting"; 86 94 run; 95 /* 87 96 proc sort data=tmp; 88 by descendingyear;97 by year; 89 98 run; 90 99 */ 91 100 proc print data=tmp; 92 101 trunk/ibisq/module/comdis/Rate.def
r716 r1043 3 3 #added for the order of the date range5/30/07 4 4 #f result_sort by&descending&dayint; 5 f result_sort by&y r;5 f result_sort by&year&month; 6 6 #f data_where event=11060 7 7 # pop_where sex=1&and&15<=age<=44 … … 104 104 data tmp; 105 105 set tmp; 106 yr=substr(dayint,7,4); 106 yr=substr((dayint),18,4); 107 mth=substr((dayint),12,2); 107 108 year=yr+0; 109 month=mth+0; 110 108 111 *if dayint^='' and dayintx^=.; 109 112 *if _type_ in (2,3); … … 161 164 if n=. then n=0; 162 165 163 proc sort data=tmp; by y r;166 proc sort data=tmp; by year; 164 167 /*dayint %cross2%*/ 165 168 proc print data=tmp; trunk/ibisq/module/ed/ED.cfg
r959 r1043 22 22 d saspop /srv/ibis-q/sasData/final 23 23 r sasdata edibisall 24 d saspopdata pop_y2k_2008 24 d saspopdata pop_y2k_2008_7_23 25 25 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 26 26 r pop_where 1999<=year<=2006 trunk/ibisq/module/ed/EDSarea.cfg
r975 r1043 22 22 d saspop /srv/ibis-q/sasData/final 23 23 r sasdata edibisall 24 d saspopdata smarea_2008 24 d saspopdata smarea_2008_7_23 25 25 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 26 26 r pop_where 1999<=year<=2006 trunk/ibisq/module/edpcsc/EDPCSC.cfg
r619 r1043 18 18 d saspop /srv/ibis-q/sasData/final 19 19 r sasdata edpcsc 20 d saspopdata pop_y2k_2008 20 d saspopdata pop_y2k_2008_7_23 21 21 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 22 22 r pop_where 2001<=dthyr<=2006 trunk/ibisq/module/edpcsc/EDPCSCSarea.cfg
r959 r1043 17 17 d saspop /srv/ibis-q/sasData/final 18 18 r sasdata edpcsc_sarea 19 d saspopdata smarea_2008 19 d saspopdata smarea_2008_7_23 20 20 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 21 21 r pop_where 2001<=year<=2006 trunk/ibisq/module/fetmort/FetMort.cfg
r959 r1043 24 24 #r data_where 1989<=year<=2006 25 25 d saspopdata nbirth 26 ##########Don't forget to update pop_where and data_where in FertMortCnty99.xml########################### 26 27 r pop_where 1989<=bbthyear<=2007 27 28 #################################################################### trunk/ibisq/module/hddb/HDDB.cfg
r959 r1043 21 21 d saspop /srv/ibis-q/sasData/final 22 22 r sasdata hddball 23 d saspopdata pop_y2k_2008 23 d saspopdata pop_y2k_2008_7_23 24 24 ###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 25 25 r pop_where 1992<=year<=2006 … … 38 38 r small_num 5 39 39 r small_pop 30 40 #r small_num 0 41 #r small_pop 0 42 40 43 ############################################################################# 41 44 # for type1=num -- SAS data type is numeric trunk/ibisq/module/hddb/HDDBSarea.cfg
r975 r1043 19 19 d saspop /srv/ibis-q/sasData/final 20 20 r sasdata hddball 21 d saspopdata smarea_2008 21 d saspopdata smarea_2008_7_23 22 22 r pop_where 1992<=year<=2006 23 23 r data_where 0<=ptcounty2<=30 trunk/ibisq/module/infmort/InfMort.cfg
r3 r1043 7 7 # 03/02/2007 Shandra Initial cleaned version. 8 8 # 06/25/2007 Shandra Removed func numbers. 9 # 10/28/2008 Tong add InfDthCauProxy. 9 10 #============================================================================== 10 11 … … 18 19 d sasdata inf_dth 19 20 d data_where dthyr>=1989 20 d dataset IBISQ&-Infant&Mortality&(Utah,&1989&-&2002)21 21 d saspopdata nbirth 22 22 ##################################################################### … … 51 51 52 52 45 dutcnty GeoRes dutcnty State&of&Residence num 0 5 53 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 354 53 52 sex InfSex igender Gender num 0 3 55 54 53 drace Race bmomrace Race num 0 3 … … 65 64 67 dthyr YearGrp5 bbthyear Year&of&Death num 3 4 66 65 68 dthyr Year9 bbthyear DeathYr&of&Death num 3 4 67 66 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 67 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 68 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 trunk/ibisq/module/infmort/InfMortBirthLink.cfg
r766 r1043 11 11 # & AgeGrp10 back to MomAgeGrp 12 12 # 04/25/2008 Tong Update 2005 data 13 # 10/22/2008 Tong Update 2006 data 13 14 #============================================================================== 14 15 … … 21 22 d saspop /srv/ibis-q/sasData/final 22 23 d sasdata lnkb8999 23 r data_where 1989<=bbthyear<=200 524 r data_where 1989<=bbthyear<=2006 24 25 d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2001) 25 26 d saspopdata nbirth 26 r pop_where 1989<=bbthyear<=200 527 r pop_where 1989<=bbthyear<=2006 27 28 #################################################################### 28 29 … … 88 89 ################## 89 90 90 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 391 92 91 52 dgender Sex igender Gender num 0 3 93 92 53 drace Race bmomrace Race num 0 3 … … 140 139 141 140 #58 dutcnty GeoRes dutcnty All&Resident&births num 0 5 142 58 occur Occur dutcnty Birth&Occurrance&Status num 0 5 143 58 rs_ut ResUt dutcnty All&Resident&Births&that&Occured&in&Utah num 0 5 144 58 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 141 2 occur BirthOccurProxy dist Geographic&Area num 10 4 142 58 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 143 58 rs_ut BirthOccurResUt rs_ut All&Resident&Births&that&Occured&in&Utah num 0 5 144 58 occur BirthOccurUt occur All&Births&that&Occured&in&Utah num 0 5 145 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 146 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 147 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 145 148 trunk/ibisq/module/infmort/InfMortBirthLinkSarea.cfg
r766 r1043 11 11 # & AgeGrp10 back to MomAgeGrp 12 12 # 04/25/2008 Tong Update 2005 data 13 # 010/22/2008 Tong Update 2006 data 13 14 #============================================================================== 14 15 … … 21 22 d saspop /srv/ibis-q/sasData/final 22 23 d sasdata lnkb8999 23 r data_where 1989<=bbthyear<=200 524 r data_where 1989<=bbthyear<=2006 24 25 #d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2001) 25 26 d saspopdata nbirth 26 r pop_where 1989<=bbthyear<=200 527 r pop_where 1989<=bbthyear<=2006 27 28 #################################################################### 28 29 d response_head_content XMLResponse.head … … 58 59 ############################################################################# 59 60 #value name_sas name_html name_pop prompt type1 type2 length 60 61 ######################3 QM ?????62 #21 dcause 1 dcause 1 null Death&Cause&1 char 1 463 #22 dcause 2 dcause 2 null Death&Cause&2 char 1 464 #23 dcause 3 dcause 3 null Death&Cause&3 char 1 465 #24 dcause 4 dcause 4 null Death&Cause&4 char 1 466 #25 dcause 5 dcause 5 null Death&Cause&5 char 1 467 #26 dcause 6 dcause 6 null Death&Cause&6 char 1 468 #27 dcause 7 dcause 7 null Death&Cause&7 char 1 469 #28 dcause 8 dcause 8 null Death&Cause&8 char 1 470 #29 dcause 9 dcause 9 null Death&Cause&9 char 1 471 #30 dcause 10 dcause 10 null Death&Cause&10 char 1 472 #41 infDeath infDeath null Infant&Death&(<365&days) num 0 373 #42 neoDeath neoDeath null Neonatal&Death&(<28&days) num 0 374 #43 periDeath periDeath null Perinatal&Death&(<7&days+Fetal&Deaths) num 0 375 #44 postDeath postDeath null Postneonatal&Death&(28-364&days) num 0 376 77 #51 icat2 icat2 null Major&Cause&of&Death num 0 378 #41 prencare pvisit prencare Prenatal&Care&Visits num 0 479 #42 aWtnum bweight aWtnum Birth&Weight&in&Grams num 1 480 #43 bgestage bgestage bgestage Gestational&Age&in&Weeks num 1 481 #44 bmomeduc bmomeduc bmomeduc Maternal&Education num 1 482 #45 bmomage bmomage bmomage Maternal&Age num 1 483 #46 bmomgain bmomgain bmomgain Weight&Gained&During&Pregnancy num 1 484 85 #54 null popcount popcount Population num 1 486 ##################87 88 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 389 61 90 62 52 dgender Sex igender Gender num 0 3 … … 140 112 58 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 141 113 114 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 115 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 116 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 142 117 trunk/ibisq/module/infmort/InfMortDeathLink.cfg
r766 r1043 21 21 d saspop /srv/ibis-q/sasData/final 22 22 d sasdata dth_lnk 23 r data_where 1990<=dyear<=200 623 r data_where 1990<=dyear<=2007 24 24 d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2002) 25 25 d saspopdata nbirth 26 r pop_where 1990<=bbthyear<=200 626 r pop_where 1990<=bbthyear<=2007 27 27 #################################################################### 28 28 d response_head_content XMLResponse.head … … 86 86 #54 null popcount popcount Population num 1 4 87 87 ################################################ 88 89 90 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 391 88 92 89 52 dgender Sex igender Gender num 0 3 … … 153 150 #57 agegrp MomAgeGrp agegrp Small&Area&Age&(Grouped) num 0 4 154 151 155 58 occur Occur dutcnty Birth&Occurrance&Status num 0 5 156 58 rs_ut ResUt dutcnty All&Resident&Births&that&Occured&in&Utah num 0 5 157 58 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 152 2 occur BirthOccurProxy dist Geographic&Area num 10 4 153 58 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 154 58 rs_ut BirthOccurResUt dutcnty All&Resident&Births&that&Occured&in&Utah num 0 5 155 58 occur BirthOccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 158 156 157 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 158 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 159 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 160 trunk/ibisq/module/infmort/InfMortDeathLinkSarea.cfg
r766 r1043 20 20 d saspop /srv/ibis-q/sasData/final 21 21 d sasdata dth_lnk 22 r data_where 1990<=dyear<=200 622 r data_where 1990<=dyear<=2007 23 23 d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2002) 24 24 d saspopdata nbirth 25 r pop_where 1990<=bbthyear<=200 625 r pop_where 1990<=bbthyear<=2007 26 26 #################################################################### 27 27 d response_head_content XMLResponse.head … … 86 86 #54 null popcount popcount Population num 1 4 87 87 ################## 88 89 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 390 91 88 52 dgender Sex igender Gender num 0 3 92 89 53 drace Race bmomrace Race num 0 3 … … 155 152 58 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 156 153 154 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 155 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 156 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 trunk/ibisq/module/infmort/InfMortSarea.cfg
r536 r1043 76 76 77 77 45 dutcnty GeoRes dutcnty State&of&Residence num 0 5 78 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 379 78 52 sex InfSex igender Gender num 0 3 80 79 53 drace Race bmomrace Race num 0 3 … … 105 104 106 105 58 sarea GeoSarea sarea Small&Area num 0 3 106 21 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 107 50 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 108 50 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 107 109 trunk/ibisq/module/mort/Mort.cfg
r959 r1043 17 17 d saspop /srv/ibis-q/sasData/final 18 18 r sasdata death99 19 d saspopdata pop_y2k_2008 19 d saspopdata pop_y2k_2008_7_23 20 20 r pop_where 1999<=dthyr<=2007 21 21 r sasstdpop morstd trunk/ibisq/module/mort/MortSarea.cfg
r959 r1043 17 17 d saspop /srv/ibis-q/sasData/final 18 18 r sasdata dthsa99 19 d saspopdata smarea_2008 19 d saspopdata smarea_2008_7_23 20 20 r pop_where 1999<=year<=2007 21 21 r sasstdpop morstd trunk/ibisq/module/pop/Pop.cfg
r619 r1043 17 17 d saspath /srv/ibis-q/sasData/final/ 18 18 d saspop /srv/ibis-q/sasData/final/ 19 d sasdata pop80_60_2008 19 d sasdata pop80_60_2008_7_23 20 20 d saspopdata none 21 21 # pop_where 80<=dthyr<=95 trunk/ibisq/module/pop/PopSarea.cfg
r959 r1043 17 17 d saspath /srv/ibis-q/sasData/final 18 18 d saspop /srv/ibis-q/sasData/final 19 d sasdata smarea_2008 19 d sasdata smarea_2008_7_23 20 #d sasdata smarea_2006 20 21 d saspopdata none 21 22 # pop_where 80<=dthyr<=95 trunk/ibisq/module/raceeth/RaceEth.cfg
r536 r1043 15 15 #################################################################### 16 16 d saspath /srv/ibis-q/sasData/final 17 d sasdata race _eth17 d sasdata racealone 18 18 #################################################################### 19 19 d response_head_content XMLResponse.head trunk/ibisq/module/ucr/UCR.cfg
r619 r1043 19 19 d saspop /srv/ibis-q/sasData/final 20 20 r sasdata ucr 21 d saspopdata pop_y2k_2008 21 d saspopdata pop_y2k_2008_7_23 22 22 r pop_where dthyr<=2005 23 23 d sasstdpop morstd_10agegrp trunk/ibisq/module/uhas/UHAS.cfg
r959 r1043 24 24 r sasdata hss 25 25 r sas_bin sas&-memsize&128m 26 r data_where gender&in&(1,2) 26 27 #################################################################### 27 28 d response_head_content XMLResponse.head … … 131 132 #58 mentl mentl null Number&of&days&in&past&30&mental&health¬&good num 1 3 132 133 ######################## 133 134 134 33 coverg HlthInsur null Health&Insurance num 0 3 135 135 33 coverg SurvDemoInsur null Health&Insurance num 0 3 … … 139 139 52 pov SurvDemoPov null Poverty&level num 0 3 140 140 58 imm2 HepBVac null Had&a&complete&Hep&B&Vaccine&Series num 0 3 141