Changeset 1043

Show
Ignore:
Timestamp:
11/04/08 15:08:57 (2 months ago)
Author:
tong
Message:

update backend ibisq on 11-4-2008

Files:

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 
     1f label Fertility&Rate 
     2f type special2 
     3f data_where dutcnty=1 
     4#f data_where 15<=bmomage<=44 
     5f pop_where sex=2&and&year>=1989 
     6######################################### 
     7--------BoNdArY-------- 
     81 script 
     9 
     10proc summary data=tmp; 
     11where %cross1%^=99 
     12?cross2? and %cross2%^=99 
     13
     14 var x; 
     15 class %cross1% %cross2%; 
     16 output out=tmp sum=number; 
     17 run; 
     18 
     19proc print data=tmp; 
     20title 'tmp'; 
     21run; 
     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 
     38proc print data=rate; 
     39title 'rate'; 
     40run; 
     41 
     42 data tmp; 
     43 set rate; 
     44rate=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; 
     54n=number; 
     55 keep %cross1% %cross2% rate n popnum ci r1 r2; 
     56 run; 
     57--------BoNdArY-------- 
     58f out_variable rate 
     59########changed 10/15/04######################################### 
     60# definition for output file 
    461f xml_out_map_file XMLRateNumerDenomLCLUCL.map 
     62--------BoNdArY-------- 
    563f 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  
    2626d saspop /srv/ibis-q/sasData/final 
    2727d sasdata nbirth 
    28 d saspopdata pop_y2k_2008 
     28d saspopdata pop_y2k_2008_7_23 
    2929###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    3030r pop_where 1989<=year<=2007 
     
    1071072 occur BirthOccurProxy dist Geographic&Area num 10 4 
    10810858 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 
    109 58 rs_ut BirthOccurResUt dutcnty All&Resident&Births&that&Occured&in&Utah num 0 5 
    110 58 occur BirthOccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 
     10958 rs_ut BirthOccurResUt rs_ut All&Resident&Births&that&Occured&in&Utah num 0 5 
     11058 occur BirthOccurUt occur All&Births&that&Occured&in&Utah num 0 5 
    111111 
    11211258 bocccnty GeoOccurCnty rescnty All&Births&that&Occured&in&Utah num 0 5 
  • trunk/ibisq/module/birth/BirthSarea.cfg

    r959 r1043  
    2323d sasdata nbirth 
    2424###Small area pop data with mage group updated 2003### 
    25 d saspopdata smarea_2008 
     25d saspopdata smarea_2008_7_23 
    2626###Limit Year in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2727r pop_where 1990<=year<=2007 
  • trunk/ibisq/module/birth/FertRate.def

    r959 r1043  
    11f label Fertility&Rate 
    2 f type rate 
     2f type special2 
    33f xml_out_map_file XMLRateNumerDenomLCLUCL.map 
    4 f out_detail lbl_not_used__see_xml_out_map_file 
    5 f multiple 1000 
    64f data_where dutcnty=1 
    7 f pop_count popcount 
    8 f pop_where sex=2&and&1989<=year<=2007 
     5f data_where 15<=bmomage<=44 
     6f pop_where sex=2&and&year>=1989 
     7######################################### 
     8--------BoNdArY-------- 
     91 script 
     10 
     11proc summary data=tmp; 
     12where %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 
     18proc print data=tmp; 
     19title 'tmp'; 
     20run; 
     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 
     37proc print data=rate; 
     38title 'rate'; 
     39run; 
     40 
     41 data tmp; 
     42 set rate; 
     43rate=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; 
     53n=number; 
     54 keep %cross1% %cross2% rate n popnum ci r1 r2; 
     55 run; 
     56--------BoNdArY-------- 
     57f out_variable rate 
     58########changed 10/15/04######################################### 
     59# definition for output file 
     60f xml_out_map_file XMLRateNumerDenomLCLUCL.map 
     61--------BoNdArY-------- 
     62f 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  
    22f type special  
    33f data_where 15<=bmomage<=44 
     4f data_where dutcnty=1 
    45f pop_where sex=2 
    56#&and&15<=age<=44 
  • trunk/ibisq/module/brfss/BRFSS.cfg

    r975 r1043  
    10610632 mental7 MentHlthPast30Day null Mental&health&past&30&days num 0 3 
    10710732 asthdef AsthNow null Asthma&diagnosed&by&doctor num 0 3 
     10832 asthma AsthEver null Asthma&diagnosed&by&doctor num 0 3 
    10810932 arth ArthDrDiag null Arthritis num 0 3 
    10911032 rchol AwareHighChol null High&cholesterol&awareness num 0 3 
  • trunk/ibisq/module/brfss/SigmColon.def

    r536 r1043  
    22f type special_survey 
    33f 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
     4f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    55#f pop_where sex=1 
    66######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdj.def

    r959 r1043  
    22f type special_survey 
    33f 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
     4f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    55#f pop_where sex=1 
    66######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSame.def

    r959 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdjHighLowSameRace.def

    r716 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdjQuartile.def

    r959 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdjQuartileRace.def

    r716 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/brfss/SigmColonAgeAdjRace.def

    r766 r1043  
    22f type special_survey 
    33f 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
     4f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    55#f pop_where sex=1 
    66######################################### 
  • trunk/ibisq/module/brfss/SigmColonHighLowSame.def

    r536 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/brfss/SigmColonQuartile.def

    r536 r1043  
    33f no_total true 
    44f 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
     5f data_where agec&in&(2,3,4,5)&and&year&in&(1993,1995,1997,1999,2000,2001,2002,2003,2004,2005,2006,2007
    66#f pop_where sex=1 
    77######################################### 
  • trunk/ibisq/module/comdis/ComDis.cfg

    r716 r1043  
    1919d saspop /srv/ibis-q/sasData/final/ 
    2020r sasdata comdis 
    21 d saspopdata pop_y2k_2008 
     21d saspopdata pop_y2k_2008_7_23 
    2222r pop_where 1980<=dthyr<=2008 
    2323r sasstdpop morstd 
     
    3131r cross1 DayInterval 
    3232r cross2 none 
     33r cross3 none 
    3334r spvar1 none 
    3435r spvar2 none 
     
    777840 event Event null Event num 0 4 
    787940 eventtype EventType null Event&Type num 0 4 
    79 40 year Year year Year num 0 4 
    80  
    818043 stdyr stdpop null Standard&Population num 7 3 
    828144 dutcnty GeoRes dutcnty Residential&County num 0 5 
    838240 days Days null days num 0 4 
     831 ageyr TimeIntervalProxy age Age&Group num 10 4 
     8444 rptmmwrweek MMWRWeek null Residential&County num 0 5 
     8544 rptmon MMWRMonth null Residential&County num 0 5 
     8644 rptyear MMWRYear year Residential&County num 0 5 
     8744 rptyear Year year Residential&County num 0 5 
  • trunk/ibisq/module/comdis/Count.def

    r716 r1043  
    22f type special  
    33#added for the order of the date range5/30/07 
    4 f result_sort by&yr;  
     4f result_sort by&yr&month;  
    55#f data_where event=11060 
    66# pop_where sex=1&and&15<=age<=44 
     
    7777data tmp; 
    7878 set tmp; 
    79 yr=substr(dayint,7,4);  
     79put dayintx; 
     80yr=substr((dayint),18,4);  
     81mth=substr((dayint),12,2);  
    8082 year=yr+0;  
     83 month=mth+0; 
    8184if n=. then n=''; 
    8285if dayintx^=. and dayint='' then delete; 
    8386if dayintx=. and dayint^='' then delete; 
    84 if dayint='' then dayint='All'; 
     87*if dayint='' then dayint='All'; 
     88if dayint='' then delete; 
     89 
    8590if n=. then n=0; 
     91proc print; 
     92var year month; 
     93title "sorting"; 
    8694run; 
     95/* 
    8796proc sort data=tmp; 
    88 by descending year; 
     97by year; 
    8998run; 
    90  
     99*/ 
    91100proc print data=tmp;  
    92101 
  • trunk/ibisq/module/comdis/Rate.def

    r716 r1043  
    33#added for the order of the date range5/30/07  
    44#f result_sort by&descending&dayint;  
    5 f result_sort by&yr;  
     5f result_sort by&year&month;  
    66#f data_where event=11060  
    77# pop_where sex=1&and&15<=age<=44  
     
    104104data tmp;  
    105105   set tmp;  
    106  yr=substr(dayint,7,4);  
     106 yr=substr((dayint),18,4);  
     107mth=substr((dayint),12,2);  
    107108 year=yr+0;  
     109 month=mth+0; 
     110 
    108111 *if dayint^='' and dayintx^=.;  
    109112 *if _type_ in (2,3); 
     
    161164 if n=. then n=0;  
    162165   
    163 proc sort data=tmp; by yr; 
     166proc sort data=tmp; by year; 
    164167/*dayint %cross2%*/  
    165168 proc print data=tmp;  
  • trunk/ibisq/module/ed/ED.cfg

    r959 r1043  
    2222d saspop /srv/ibis-q/sasData/final 
    2323r sasdata edibisall 
    24 d saspopdata pop_y2k_2008 
     24d saspopdata pop_y2k_2008_7_23 
    2525###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2626r pop_where 1999<=year<=2006 
  • trunk/ibisq/module/ed/EDSarea.cfg

    r975 r1043  
    2222d saspop /srv/ibis-q/sasData/final 
    2323r sasdata edibisall 
    24 d saspopdata smarea_2008 
     24d saspopdata smarea_2008_7_23 
    2525###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2626r pop_where 1999<=year<=2006 
  • trunk/ibisq/module/edpcsc/EDPCSC.cfg

    r619 r1043  
    1818d saspop /srv/ibis-q/sasData/final 
    1919r sasdata edpcsc 
    20 d saspopdata pop_y2k_2008 
     20d saspopdata pop_y2k_2008_7_23 
    2121###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2222r pop_where 2001<=dthyr<=2006 
  • trunk/ibisq/module/edpcsc/EDPCSCSarea.cfg

    r959 r1043  
    1717d saspop /srv/ibis-q/sasData/final 
    1818r sasdata edpcsc_sarea 
    19 d saspopdata smarea_2008 
     19d saspopdata smarea_2008_7_23 
    2020###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2121r pop_where 2001<=year<=2006 
  • trunk/ibisq/module/fetmort/FetMort.cfg

    r959 r1043  
    2424#r data_where 1989<=year<=2006 
    2525d saspopdata nbirth 
     26##########Don't forget to update pop_where and data_where in FertMortCnty99.xml########################### 
    2627r pop_where 1989<=bbthyear<=2007 
    2728#################################################################### 
  • trunk/ibisq/module/hddb/HDDB.cfg

    r959 r1043  
    2121d saspop /srv/ibis-q/sasData/final 
    2222r sasdata hddball 
    23 d saspopdata pop_y2k_2008 
     23d saspopdata pop_y2k_2008_7_23 
    2424###Limit yr in pop data,otherwise all avail yrs shown in "all" button 11/1/05### 
    2525r pop_where 1992<=year<=2006 
     
    3838r small_num 5 
    3939r small_pop 30 
     40#r small_num 0 
     41#r small_pop 0 
     42 
    4043############################################################################# 
    4144# for type1=num -- SAS data type is numeric 
  • trunk/ibisq/module/hddb/HDDBSarea.cfg

    r975 r1043  
    1919d saspop /srv/ibis-q/sasData/final 
    2020r sasdata hddball 
    21 d saspopdata smarea_2008 
     21d saspopdata smarea_2008_7_23 
    2222r pop_where 1992<=year<=2006 
    2323r data_where 0<=ptcounty2<=30 
  • trunk/ibisq/module/infmort/InfMort.cfg

    r3 r1043  
    77# 03/02/2007  Shandra     Initial cleaned version. 
    88# 06/25/2007  Shandra     Removed func numbers. 
     9# 10/28/2008  Tong        add InfDthCauProxy. 
    910#============================================================================== 
    1011 
     
    1819d sasdata inf_dth 
    1920d data_where dthyr>=1989 
    20 d dataset IBISQ&-Infant&Mortality&(Utah,&1989&-&2002) 
    2121d saspopdata nbirth 
    2222##################################################################### 
     
    5151 
    525245 dutcnty GeoRes dutcnty State&of&Residence num 0 5 
    53 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    545352 sex InfSex igender Gender num 0 3 
    555453 drace Race bmomrace Race num 0 3 
     
    656467 dthyr YearGrp5 bbthyear Year&of&Death num 3 4 
    666568 dthyr Year9 bbthyear DeathYr&of&Death num 3 4 
    67  
     6621 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     6750 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     6850 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
  • trunk/ibisq/module/infmort/InfMortBirthLink.cfg

    r766 r1043  
    1111#                           & AgeGrp10 back to MomAgeGrp  
    1212# 04/25/2008  Tong        Update 2005 data 
     13# 10/22/2008  Tong        Update 2006 data 
    1314#============================================================================== 
    1415 
     
    2122d saspop /srv/ibis-q/sasData/final 
    2223d sasdata lnkb8999 
    23 r data_where 1989<=bbthyear<=2005 
     24r data_where 1989<=bbthyear<=2006 
    2425d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2001) 
    2526d saspopdata nbirth 
    26 r pop_where 1989<=bbthyear<=2005 
     27r pop_where 1989<=bbthyear<=2006 
    2728#################################################################### 
    2829 
     
    8889################## 
    8990 
    90 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    91  
    929152 dgender Sex igender Gender num 0 3 
    939253 drace Race bmomrace Race num 0 3 
     
    140139 
    141140#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 
     1412 occur BirthOccurProxy dist Geographic&Area num 10 4 
     14258 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 
     14358 rs_ut BirthOccurResUt rs_ut All&Resident&Births&that&Occured&in&Utah num 0 5 
     14458 occur BirthOccurUt occur All&Births&that&Occured&in&Utah num 0 5 
     14521 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     14650 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     14750 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
    145148 
  • trunk/ibisq/module/infmort/InfMortBirthLinkSarea.cfg

    r766 r1043  
    1111#                           & AgeGrp10 back to MomAgeGrp  
    1212# 04/25/2008  Tong        Update 2005 data 
     13# 010/22/2008  Tong        Update 2006 data 
    1314#============================================================================== 
    1415 
     
    2122d saspop /srv/ibis-q/sasData/final 
    2223d sasdata lnkb8999 
    23 r data_where 1989<=bbthyear<=2005 
     24r data_where 1989<=bbthyear<=2006 
    2425#d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2001) 
    2526d saspopdata nbirth 
    26 r pop_where 1989<=bbthyear<=2005 
     27r pop_where 1989<=bbthyear<=2006 
    2728#################################################################### 
    2829d response_head_content XMLResponse.head 
     
    5859############################################################################# 
    5960#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 4 
    63 #22 dcause 2 dcause 2 null Death&Cause&2 char 1 4 
    64 #23 dcause 3 dcause 3 null Death&Cause&3 char 1 4 
    65 #24 dcause 4 dcause 4 null Death&Cause&4 char 1 4 
    66 #25 dcause 5 dcause 5 null Death&Cause&5 char 1 4 
    67 #26 dcause 6 dcause 6 null Death&Cause&6 char 1 4 
    68 #27 dcause 7 dcause 7 null Death&Cause&7 char 1 4 
    69 #28 dcause 8 dcause 8 null Death&Cause&8 char 1 4 
    70 #29 dcause 9 dcause 9 null Death&Cause&9 char 1 4 
    71 #30 dcause 10 dcause 10 null Death&Cause&10 char 1 4 
    72 #41 infDeath infDeath null Infant&Death&(<365&days) num 0 3 
    73 #42 neoDeath neoDeath null Neonatal&Death&(<28&days) num 0 3 
    74 #43 periDeath periDeath null Perinatal&Death&(<7&days+Fetal&Deaths) num 0 3 
    75 #44 postDeath postDeath null Postneonatal&Death&(28-364&days) num 0 3 
    76  
    77 #51 icat2 icat2 null Major&Cause&of&Death num 0 3 
    78 #41 prencare pvisit prencare Prenatal&Care&Visits num 0 4 
    79 #42 aWtnum bweight aWtnum Birth&Weight&in&Grams num 1 4 
    80 #43 bgestage bgestage bgestage Gestational&Age&in&Weeks num 1 4 
    81 #44 bmomeduc bmomeduc bmomeduc Maternal&Education num 1 4 
    82 #45 bmomage bmomage bmomage Maternal&Age num 1 4 
    83 #46 bmomgain bmomgain bmomgain Weight&Gained&During&Pregnancy num 1 4 
    84  
    85 #54 null popcount popcount Population num 1 4 
    86 ################## 
    87  
    88 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    8961 
    906252 dgender Sex igender Gender num 0 3 
     
    14011258 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 
    141113 
     11421 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     11550 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     11650 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
    142117 
  • trunk/ibisq/module/infmort/InfMortDeathLink.cfg

    r766 r1043  
    2121d saspop /srv/ibis-q/sasData/final 
    2222d sasdata dth_lnk 
    23 r data_where 1990<=dyear<=2006 
     23r data_where 1990<=dyear<=2007 
    2424d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2002) 
    2525d saspopdata nbirth 
    26 r pop_where 1990<=bbthyear<=2006 
     26r pop_where 1990<=bbthyear<=2007 
    2727#################################################################### 
    2828d response_head_content XMLResponse.head 
     
    8686#54 null popcount popcount Population num 1 4 
    8787################################################ 
    88  
    89  
    90 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    9188 
    928952 dgender Sex igender Gender num 0 3 
     
    153150#57 agegrp MomAgeGrp agegrp Small&Area&Age&(Grouped) num 0 4 
    154151 
    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 
     1522 occur BirthOccurProxy dist Geographic&Area num 10 4 
     15358 dutcnty BirthOccurRes dutcnty All&Resident&births num 0 5 
     15458 rs_ut BirthOccurResUt dutcnty All&Resident&Births&that&Occured&in&Utah num 0 5 
     15558 occur BirthOccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 
    158156 
     15721 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     15850 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     15950 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
     160 
  • trunk/ibisq/module/infmort/InfMortDeathLinkSarea.cfg

    r766 r1043  
    2020d saspop /srv/ibis-q/sasData/final 
    2121d sasdata dth_lnk 
    22 r data_where 1990<=dyear<=2006 
     22r data_where 1990<=dyear<=2007 
    2323d dataset IBISQ - Linked Birth and Infant Mortality (Utah,&1989&-&2002) 
    2424d saspopdata nbirth 
    25 r pop_where 1990<=bbthyear<=2006 
     25r pop_where 1990<=bbthyear<=2007 
    2626#################################################################### 
    2727d response_head_content XMLResponse.head 
     
    8686#54 null popcount popcount Population num 1 4 
    8787################## 
    88  
    89 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    90  
    918852 dgender Sex igender Gender num 0 3 
    928953 drace Race bmomrace Race num 0 3 
     
    15515258 occur_ut OccurUt dutcnty All&Births&that&Occured&in&Utah num 0 5 
    156153 
     15421 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     15550 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     15650 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
  • trunk/ibisq/module/infmort/InfMortSarea.cfg

    r536 r1043  
    7676 
    777745 dutcnty GeoRes dutcnty State&of&Residence num 0 5 
    78 50 icat1 ICDNCHSInfDeath null Major&Cause&of&Death num 0 3 
    797852 sex InfSex igender Gender num 0 3 
    807953 drace Race bmomrace Race num 0 3 
     
    105104 
    10610558 sarea GeoSarea sarea Small&Area num 0 3  
     10621 zip InfDthCauProxy null Geographic&Area&Specified char 10 3 
     10750 icat1 ICDNCHSInfDeath null 130&Cause&of&Death num 0 3 
     10850 icat2 ICDGenInfDeath null General&Cause&of&Death num 0 3 
    107109 
  • trunk/ibisq/module/mort/Mort.cfg

    r959 r1043  
    1717d saspop /srv/ibis-q/sasData/final 
    1818r sasdata death99 
    19 d saspopdata pop_y2k_2008 
     19d saspopdata pop_y2k_2008_7_23 
    2020r pop_where 1999<=dthyr<=2007 
    2121r sasstdpop morstd 
  • trunk/ibisq/module/mort/MortSarea.cfg

    r959 r1043  
    1717d saspop /srv/ibis-q/sasData/final 
    1818r sasdata dthsa99 
    19 d saspopdata smarea_2008 
     19d saspopdata smarea_2008_7_23 
    2020r pop_where 1999<=year<=2007 
    2121r sasstdpop morstd 
  • trunk/ibisq/module/pop/Pop.cfg

    r619 r1043  
    1717d saspath /srv/ibis-q/sasData/final/ 
    1818d saspop /srv/ibis-q/sasData/final/ 
    19 d sasdata pop80_60_2008 
     19d sasdata pop80_60_2008_7_23 
    2020d saspopdata none 
    2121# pop_where 80<=dthyr<=95 
  • trunk/ibisq/module/pop/PopSarea.cfg

    r959 r1043  
    1717d saspath /srv/ibis-q/sasData/final 
    1818d saspop /srv/ibis-q/sasData/final 
    19 d sasdata smarea_2008 
     19d sasdata smarea_2008_7_23 
     20#d sasdata smarea_2006 
    2021d saspopdata none 
    2122# pop_where 80<=dthyr<=95 
  • trunk/ibisq/module/raceeth/RaceEth.cfg

    r536 r1043  
    1515#################################################################### 
    1616d saspath /srv/ibis-q/sasData/final 
    17 d sasdata race_eth 
     17d sasdata racealone 
    1818#################################################################### 
    1919d response_head_content XMLResponse.head 
  • trunk/ibisq/module/ucr/UCR.cfg

    r619 r1043  
    1919d saspop /srv/ibis-q/sasData/final 
    2020r sasdata ucr 
    21 d saspopdata pop_y2k_2008 
     21d saspopdata pop_y2k_2008_7_23 
    2222r pop_where dthyr<=2005 
    2323d sasstdpop morstd_10agegrp 
  • trunk/ibisq/module/uhas/UHAS.cfg

    r959 r1043  
    2424r sasdata hss 
    2525r sas_bin sas&-memsize&128m 
     26r data_where gender&in&(1,2) 
    2627#################################################################### 
    2728d response_head_content XMLResponse.head 
     
    131132#58 mentl mentl null Number&of&days&in&past&30&mental&health&not&good num 1 3 
    132133######################## 
    133  
    13413433 coverg HlthInsur null Health&Insurance num 0 3 
    13513533 coverg SurvDemoInsur null Health&Insurance num 0 3 
     
    13913952 pov SurvDemoPov null Poverty&level num 0 3 
    14014058 imm2 HepBVac null Had&a&complete&Hep&B&Vaccine&Series num 0 3 
    141