Changeset 24304 in main
- Timestamp:
- 12/15/21 16:36:22 (8 months ago)
- Location:
- adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30
- Files:
-
- 6 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/birth/HI_Count_df.def
r24299 r24304 10 10 OPTIONS MPRINT MLOGIC SYMBOLGEN NONUMBER NODATE PAGESIZE=4000; 11 11 OPTION SPOOL; 12 13 /* proc print data=tmp (obs=10); run; 14 15 -KB: should suppress count and rate, where count between 1 and 9 16 -Should suppress rate, but not count, where count <20 17 -Should not suppress at all, but note Unstable, where RSE >0.30 18 -Should not suppress at all, but note Very Unstable, where RSE >0.50 19 */ 12 20 13 21 ************************** 1. TMP ******************************; -
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/birth/HI_RateCrude1K_df.def
r24299 r24304 13 13 OPTION SPOOL; 14 14 15 **********************************************************************************************;16 * CODE FOR ADJUSTING FOR MULTIPLE YEARS. ONLY NEEDED IF PRESENTING POPULATION COUNT ESTIMATES.;17 * If cross1 and cross2 are not equal to year, then _llcpwt is divided by the number of years ;18 * the user selects ;19 **********************************************************************************************;20 21 15 /* proc print data=tmp (obs=10); run; 22 16 -
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/mort/HI_RateAA100K_df.def
r24303 r24304 324 324 if n = 0 then redflag=put('VitalsNoVariance', $16.); 325 325 if n>=20 then redflag=put('VitalsStable', $16.); 326 if redflag>=0.30 then redflag=put('VitalsUnstable', $16.); 327 if redflag>=0.50 then redflag=put('VeryUnstable', $16.); 326 328 if (s_rows=1 and row_sum=n_rows) then suppress=1; *suppress second smallest n row; 327 329 if suppress=1 then do; … … 333 335 popcount = .A; 334 336 end; 335 if 0<=n<=19 then do;337 if 1<=n<=19 then do; 336 338 redflag=put('VitalsSuppressed', $16.); 337 339 rateper = .A; -
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/mort/HI_RateCrude100K_df.def
r24303 r24304 13 13 OPTION SPOOL; 14 14 15 /* proc print data=tmp (obs=10); run; 16 17 -KB: should suppress count and rate, where count between 1 and 9 15 /* -KB: should suppress count and rate, where count between 1 and 9 18 16 -Should suppress rate, but not count, where count <20 19 17 -Should not suppress at all, but note Unstable, where RSE >0.30 20 18 -Should not suppress at all, but note Very Unstable, where RSE >0.50 19 20 proc print data=tmp (obs=10); run; 21 proc contents data=tmp; run; 22 21 23 */ 22 24 … … 240 242 if n = 0 then redflag=put('VitalsNoVariance', $16.); 241 243 if n>=20 then redflag=put('VitalsStable', $16.); 244 if redflag>=0.30 then redflag=put('VitalsUnstable', $16.); 245 if redflag>=0.50 then redflag=put('VeryUnstable', $16.); 242 246 if (s_rows=1 and row_sum=n_rows) then suppress=1; *suppress second smallest n row; 243 247 if suppress=1 then do; … … 249 253 popcount = .A; 250 254 end; 251 if 0<=n<=19 then do;255 if 1<=n<=19 then do; 252 256 redflag=put('VitalsSuppressed', $16.); 253 257 rateper = .A; -
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/mort/_MortCenPop.cfg
r23831 r24304 79 79 2 YEAR Year9 year Year num 3 8 80 80 #### Age Groupings########################## 81 3 Five_Y ear_Age_Group_N AgeGrp18 Five_Year_Age_Group_N AgeGrp18 num 0 881 3 Five_Yr_AgeGrp_N AgeGrp18 Five_Yr_AgeGrp_N AgeGrp18 num 0 8 82 82 3 Age_N AgeCensus null CensusAgeGroup num 0 8 83 83 3 BRFSS_Age_N AgeBRFSS null BRFSSAgeGroup num 0 8 -
adopters/hi/trunk/src/main/backend_qModules/3.0/qModules30/mort/_MortDOHPop.cfg
r23831 r24304 79 79 2 YEAR Year9 year Year num 3 8 80 80 #### Age Groupings########################## 81 3 Five_Y ear_Age_Group_N AgeGrp18 Five_Year_Age_Group_N AgeGrp18 num 0 881 3 Five_Yr_AgeGrp_N AgeGrp18 Five_Yr_AgeGrp_N AgeGrp18 num 0 8 82 82 3 Age_N AgeCensus null CensusAgeGroup num 0 8 83 83 3 BRFSS_Age_N AgeBRFSS null BRFSSAgeGroup num 0 8
Note: See TracChangeset
for help on using the changeset viewer.