Changeset 20952 in main
- Timestamp:
- 07/05/20 14:02:03 (7 months ago)
- Location:
- adopters/nm/trunk/src/main/backend_qModules/3.0/birth
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_Count.def
r20663 r20952 126 126 select tmp.*, pop.* 127 127 from tmp left join pop 128 on tmp.%cross1%=pop.%popcross1% and 128 on 129 tmp.%cross1%=pop.%popcross1% and 129 130 tmp.%cross2%=pop.%popcross2%; 130 131 quit; … … 188 189 data tmp; 189 190 set tmp; 190 if ((0<n<4) and ( popcount<5000)) then do;191 if ((0<n<4) and (.<popcount<5000)) then do; 191 192 n = .A; 192 193 193 *Only one value attribute is allowed - so if suppressed, overwrite unstable;194 *This also puts ** in record code column for suppressed rows, and adds footnote;194 *Only one value attribute is allowed - so if suppressed, overwrite unstable; 195 *This also puts ** in record code column for suppressed rows, and adds footnote; 195 196 redflag = put('Suppressed', $12.); 196 197 end; -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_PctDesirableLow_5YrAvg.def
r20663 r20952 186 186 data numbers; 187 187 set numbers; 188 run; 188 run; 189 189 proc print data=numbers noobs; 190 190 title2 '4. NUMBERS dataset with lag variables replacing count and totalnum'; -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_Rate1K.def
r20663 r20952 13 13 OPTIONS MPRINT MLOGIC SYMBOLGEN NONUMBER NODATE PAGESIZE=4000; 14 14 OPTION SPOOL; 15 16 *this is to get the value of the last year for the YearGrp3Yrs dimension value.; 17 proc freq data=tmp noprint; tables year / list out=years; run; 18 proc print data=years; run; 19 data lastyear; set years; by year; if first.year then YearGrp3Yrs=year; keep YearGrp3Yrs; run; 20 proc print data=lastyear; run; 15 21 16 22 ************************** 1. TMP ******************************; … … 127 133 select tmp.*, pop.* 128 134 from tmp left join pop 129 on tmp.%cross1%=pop.%popcross1% and 135 on 136 tmp.%cross1%=pop.%popcross1% and 130 137 tmp.%cross2%=pop.%popcross2%; 131 138 quit; -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_RateBirth1KGirls.def
r20663 r20952 127 127 select tmp.*, pop.* 128 128 from tmp left join pop 129 on tmp.%cross1%=pop.%popcross1% and 129 on 130 tmp.%cross1%=pop.%popcross1% and 130 131 tmp.%cross2%=pop.%popcross2%; 131 132 quit; -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/NM_RateBirth1KGirls_5YrAvg.def
r20663 r20952 108 108 create table numbers as 109 109 select tmp.*, pop.* 110 from tmp ,pop111 where110 from tmp left join pop 111 on 112 112 ?popcross1? tmp.%cross1%=pop.%popcross1%; 113 ?popcross2? tmp.%cross2%=pop.%popcross2%; 113 ?popcross2? tmp.%cross2%=pop.%popcross2%; 114 114 quit; 115 115 %end; … … 124 124 create table numbers as 125 125 select tmp.*, pop.* 126 from tmp, pop 127 where tmp.%cross1%=pop.%popcross1% and 126 from tmp left join pop 127 on 128 tmp.%cross1%=pop.%popcross1% and 128 129 tmp.%cross2%=pop.%popcross2%; 129 130 quit; -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/_Birth18.cfg
r20797 r20952 82 82 2 year YearRangeAll year Year num 0 8 83 83 2 year YearSDH year Year num 0 8 84 2 year YearAMCHP year Year num 0 885 84 2 year Year9 year Year num 3 8 86 85 ## MOTHER CHARACTERISTICS ####################### -
adopters/nm/trunk/src/main/backend_qModules/3.0/birth/_BirthLegis17.cfg
r20797 r20952 75 75 1 null YearProxy year Year num 10 8 76 76 2 year Year year Year num 0 8 77 #YearGrp3Yrs and YearGrp5Yrs for moving year aggregates 78 #YearGrp3 and YearGrp5 and YearRangeAll for Sarea year aggregates 79 1 year YearGrp5Yrs year YearofDeath num 0 8 80 1 year YearGrp5Legis year Year num 3 8 81 2 year YearRangeAll year Year num 0 8 77 1 year YearGrp5 year Year num 3 8 82 78 2 year Year9 year Year num 3 8 83 79 ## MOTHER CHARACTERISTICS ####################### 84 80 1 null AgeGrpProxy null AgeGroup num 10 8 85 81 3 mage Mage null MothersAge num 1 8 86 3 magegrp MomAgeGrpmagegrp MothersAge num 0 887 3 magegrp2 MomAgeGrp2magegrp2 MothersAge num 0 882 3 magegrp AgeGrp10MomAge magegrp MothersAge num 0 8 83 3 magegrp2 AgeGrp6MomAge magegrp2 MothersAge num 0 8 88 84 3 medugrp Edu1 null MothersEducation num 0 8 89 85 3 fedugrp FatherEdu null FathersEducation num 0 8
Note: See TracChangeset
for help on using the changeset viewer.