*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Mon Jul 2 15:44:55 EDT 2007 This program reads the 2003 National Health Interview Survey 2003 injpoiep Data File Report errors to jroth@nber.org This program is distributed under the GNU GPL. See end of this file and http://www.gnu.org/licenses/ for details. ----------------------------------------------- */ * The following line should contain the directory where the SAS file is to be stored ; libname library "./"; * The following line should contain the complete path and name of the raw data file. On a PC, use backslashes in paths as in C:\ ; FILENAME datafile pipe "unzip -p /homes/data/nhis/ftp.cdc.gov/pub/Health_Statistics/NCHS/Datasets/NHIS/2003/injpoiep.exe "; * The following line should contain the name of the SAS dataset ; %let dataset = nhis2003_injpoiep ; DATA library.&dataset ; INFILE datafile LRECL = 20000 ; attrib rectype length=3 label="Record Type"; attrib srvy_yr length=4 label="Survey Year"; attrib hhx length=$6 label="Household Serial Number"; attrib fmx length=$2 label="Family Serial Number"; attrib px length=$2 label=""; attrib ipepno length=$2 label="Number of injury/poisoning"; attrib ijdate_m length=3 label="Month of injury or poisoning"; attrib day length=3 label="Day of week of injury/poisoning"; attrib ijdate_y length=4 label="Year of injury or poisoning"; attrib rpckdm length=3 label="Time between interview and I/P dates"; attrib ijmed_2 length=3 label="Phone call to doctor"; attrib ijmed_3 length=3 label="Phone call to poison control center"; attrib ijmed_4 length=3 label="Visit to doctor's office"; attrib ijmed_5 length=3 label="Visit to clinic/outpatient dept"; attrib ijmed_6 length=3 label="Visit to emergency department"; attrib ijmed_7 length=3 label="Visit to hospital"; attrib ihno length=3 label="Number of nights hospitalized"; attrib causnew length=3 label="Cause of injury/poisoning episode"; attrib ecausnew length=3 label="Cause of injury based on E codes"; attrib mvwho length=3 label="Injured as a driver, pass, rider, or ped"; attrib mvtyp length=3 label="Type of vehicle injured person was in"; attrib sbelt length=3 label="Wearing sbelt/in cseat attot accident"; attrib helmt length=3 label="Wearing helmet at time of accident"; attrib mvhit length=3 label="Type of vehicle striking pedestrian"; attrib burn length=3 label="Cause of burn/scald"; attrib fallnew1 length=3 label="How person fell (1st response)"; attrib fallnew2 length=3 label="How person fell (2nd response)"; attrib falln1 length=3 label="Fell down stairs, steps, escalator"; attrib falln2 length=3 label="Fell on floor/level ground"; attrib falln3 length=3 label="Fell on or down from curb/sidewalk"; attrib falln4 length=3 label="Fell on or from ladder or scaffolding"; attrib falln5 length=3 label="Fell on or from playground equipment"; attrib falln6 length=3 label="Fell from building or other structure"; attrib falln7 length=3 label="Fell from chair/bed/sofa/other furniture"; attrib falln8 length=3 label="Fell from bathtub/shower/toilet/commode"; attrib falln9 length=3 label="Fell into hole or other opening"; attrib falln10 length=3 label="Fell: other"; attrib fwhy length=3 label="Cause of fall"; attrib animal length=3 label="Kind of animal or insect bite"; attrib poitp length=3 label="Cause of poisoning"; attrib what_1 length=3 label="Activity when injured/poisoned(1st resp)"; attrib what_2 length=3 label="Activity when injured/poisoned(2nd resp)"; attrib what1 length=3 label="Driving or riding in motor vehicle"; attrib what2 length=3 label="Working at paid job"; attrib what3 length=3 label="Working around the house or yard"; attrib what4 length=3 label="Attending school"; attrib what5 length=3 label="Unpaid work (housework, volunteer)"; attrib what6 length=3 label="Sports (organized team or individual)"; attrib what7 length=3 label="Leisure activity (excluding sports)"; attrib what8 length=3 label="Sleeping, resting, eating, drinking"; attrib what9 length=3 label="Cooking"; attrib what10 length=3 label="Hands on care from other person"; attrib what11 length=3 label="Other"; attrib whernew1 length=3 label="Place injured/poisoned (1st response)"; attrib whernew2 length=3 label="Place injured/poisoned (2nd response)"; attrib whern1 length=3 label="Home (inside)"; attrib whern2 length=3 label="Home (outside)"; attrib whern3 length=3 label="School (not residential)"; attrib whern4 length=3 label="Child care center or preschool"; attrib whern5 length=3 label="Residential institution (excl. hospital)"; attrib whern6 length=3 label="Health care facility (incl. hospital)"; attrib whern7 length=3 label="Street/highway"; attrib whern8 length=3 label="Parking lot"; attrib whern9 length=3 label="Sport facility, athletic field, playgnd"; attrib whern10 length=3 label="Trade and service areas"; attrib whern11 length=3 label="Farm"; attrib whern12 length=3 label="Park/recreation area"; attrib whern13 length=3 label="River/lake/stream/ocean"; attrib whern14 length=3 label="Industrial or construction area"; attrib whern15 length=3 label="Other public building"; attrib whern16 length=3 label="Other"; attrib wkls length=3 label="Days absent from work"; attrib scls length=3 label="Days absent from school"; attrib ijadl length=3 label="Need help with personal care needs"; attrib limtm length=3 label="Help with personal care needs for 6 mo+"; attrib ijiad length=3 label="Need help with routine needs"; attrib hlimt length=3 label="Need help with routine needs for 6 mo+"; attrib icd9_1 length=$5 label="ICD-9-CM diagnosis code"; attrib icd9_2 length=$5 label="ICD-9-CM diagnosis code"; attrib icd9_3 length=$5 label="ICD-9-CM diagnosis code"; attrib icd9_4 length=$5 label="ICD-9-CM diagnosis code"; attrib ecode_1 length=$5 label="ICD-9-CM External cause code"; attrib ecode_2 length=$5 label="ICD-9-CM External cause code"; attrib ecode_3 length=$5 label="ICD-9-CM External cause code"; attrib wtfa length=4 label="Weight - Final Annual"; INPUT @1 rectype 2. @3 srvy_yr 4. @7 hhx $6. @13 fmx $2. @15 px $2. @17 ipepno $2. @19 ijdate_m 2. @21 day 2. @23 ijdate_y 4. @27 rpckdm 2. @29 ijmed_2 1. @30 ijmed_3 1. @31 ijmed_4 1. @32 ijmed_5 1. @33 ijmed_6 1. @34 ijmed_7 1. @35 ihno 2. @37 causnew 2. @39 ecausnew 2. @41 mvwho 1. @42 mvtyp 2. @44 sbelt 1. @45 helmt 1. @46 mvhit 2. @48 burn 2. @50 fallnew1 2. @52 fallnew2 2. @54 falln1 1. @55 falln2 1. @56 falln3 1. @57 falln4 1. @58 falln5 1. @59 falln6 1. @60 falln7 1. @61 falln8 1. @62 falln9 1. @63 falln10 1. @64 fwhy 1. @65 animal 2. @67 poitp 2. @69 what_1 2. @71 what_2 2. @73 what1 1. @74 what2 1. @75 what3 1. @76 what4 1. @77 what5 1. @78 what6 1. @79 what7 1. @80 what8 1. @81 what9 1. @82 what10 1. @83 what11 1. @84 whernew1 2. @86 whernew2 2. @88 whern1 1. @89 whern2 1. @90 whern3 1. @91 whern4 1. @92 whern5 1. @93 whern6 1. @94 whern7 1. @95 whern8 1. @96 whern9 1. @97 whern10 1. @98 whern11 1. @99 whern12 1. @100 whern13 1. @101 whern14 1. @102 whern15 1. @103 whern16 1. @104 wkls 1. @105 scls 1. @106 ijadl 1. @107 limtm 1. @108 ijiad 1. @109 hlimt 1. @110 icd9_1 $5. @115 icd9_2 $5. @120 icd9_3 $5. @125 icd9_4 $5. @130 ecode_1 $5. @135 ecode_2 $5. @140 ecode_3 $5. @145 wtfa 6. ; /*------------------------------------------------ The PROC FORMAT statement will store the formats in a sas data set called finjp03 To use the stored formats in a subsequent program, use code like the following: proc format cntlin=library.finjp03; PROC freq; tables pesex ; format pesex P135L.; For more information, consult PROC FORMAT in the SAS Procedures Guide ----------------------------------------------- */ PROC FORMAT cntlout=library.finjp03; ; VALUE rectype (default=32) 70 = "Injury/Poisoning Episode" ; VALUE srvy_yr (default=32) 2003 = "2003" ; VALUE $ipepno (default=32) ""01"" = "First injury or poisoning" ""02"" = "Second injury or poisoning" ""03"" = "Third injury or poisoning" ""04"" = "Fourth injury or poisoning" ""05"" = "Fifth injury or poisoning" ""06"" = "Sixth injury or poisoning" ""07"" = "Seventh injury or poisoning" ""08"" = "Eighth injury or poisoning" ""09"" = "Ninth injury or poisoning" ""10"" = "Tenth injury or poisoning" ; VALUE ijdate_m (default=32) 01 = "January" 02 = "February" 03 = "March" 04 = "April" 05 = "May" 06 = "June" 07 = "July" 08 = "August" 09 = "September" 10 = "October" 11 = "November" 12 = "December" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE day (default=32) 01 = "Sunday" 02 = "Monday" 03 = "Tuesday" 04 = "Wednesday" 05 = "Thursday" 06 = "Friday" 07 = "Saturday" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE ijdate_y (default=32) 2002 = "2002" 2003 = "2003" 2004 = "2004" 9997 = "Refused" 9998 = "Not ascertained" 9999 = "Don't know" ; VALUE rpckdm (default=32) 92 = "92-104 days" 93 = "Same month as interview" 94 = "Month before month of interview" 95 = "2 months before month of interview" 96 = "3 or 4 months before month of interview" 98 = "Not ascertained" ; VALUE ijmed_2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijmed_3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijmed_4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijmed_5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijmed_6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijmed_7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ihno (default=32) 95 = "95+ nights" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE causnew (default=32) 01 = "Transportation (see Notes below)" 02 = "Fire/burn/scald related" 03 = "Fall" 04 = "Poisoning" 05 = "Overexertion/strenuous movements" 06 = "Struck by object or person" 07 = "Animal or insect bite" 08 = "Cut/pierce" 09 = "Machinery" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE ecausnew (default=32) 01 = "Transportation (see Notes below)" 02 = "Fire/burn/scald related" 03 = "Fall" 04 = "Poisoning" 05 = "Overexertion/strenuous movements" 06 = "Struck by object or person" 07 = "Animal or insect bite" 08 = "Cut/pierce" 09 = "Machinery" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE mvwho (default=32) 1 = "Driver of a vehicle" 2 = "Passenger in a vehicle" 3 = "Bicycle rider" 4 = "Pedestrian" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mvtyp (default=32) 01 = "Passenger car" 02 = "Light truck (pickups; vans; utility vehicles)" 03 = "Bus" 04 = "Large truck" 05 = "Motorcycles (including mopeds; minibikes)" 06 = "All terrain vehicle or ski/snow-mobile" 07 = "Farm equipment (tractor)" 08 = "Airplane" 09 = "Boat" 10 = "Train" 11 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE sbelt (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE helmt (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mvhit (default=32) 01 = "Passenger car" 02 = "Light truck (pickups; vans; utility vehicles)" 03 = "Bus" 04 = "Large truck" 05 = "Motorcycle (including mopeds; minibikes)" 06 = "All terrain vehicle or ski or snow-mobile" 07 = "Farm equipment (tractor)" 08 = "Bicycle" 09 = "Train" 10 = "Boat (includes all on water vehicles)" 11 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE burn (default=32) 01 = "Cigarette; cigar; pipe" 02 = "Cooking unit" 03 = "Heater" 04 = "Wiring" 05 = "Motor vehicle battery caps; radiator caps" 06 = "Fireworks" 07 = "Other explosive" 08 = "Water or steam" 09 = "Food" 10 = "Chemicals" 11 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE fallnewa (default=32) 01 = "Stairs; steps; escalator" 02 = "Floor/level ground" 03 = "Curb; including sidewalk" 04 = "Ladder or scaffolding" 05 = "Playground equipment" 06 = "Building or other structure" 07 = "Chair; bed; sofa; other furniture" 08 = "Bathtub; shower; toilet; commode" 09 = "Hole or other opening" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE fallnewb (default=32) 00 = "No second response" 01 = "Stairs; steps; escalator" 02 = "Floor/level ground" 03 = "Curb; including sidewalk" 04 = "Ladder or scaffolding" 05 = "Playground equipment" 06 = "Building or other structure" 07 = "Chair; bed; sofa; other furniture" 08 = "Bathtub; shower; toilet; commode" 09 = "Hole or other opening" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE falln1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE falln10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE fwhy (default=32) 1 = "Slipping; tripping; or stumbling" 2 = "Jumping or diving" 3 = "Collision with/pushing; shoving by other person" 4 = "Loss of balance/dizziness/fainting/seizure" 5 = "Something else" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE animal (default=32) 01 = "Dog" 02 = "Cat" 03 = "Poisonous snake/reptile" 04 = "Nonpoisonous snake/reptile" 05 = "Unknown snake/reptile" 06 = "Poisonous insect" 07 = "Nonpoisonous insect" 08 = "Unknown insect" 09 = "Rodent" 10 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE poitp (default=32) 01 = "A drug or med substance used mistakenly/od" 02 = "A harmful or toxic solid or liquid substance" 03 = "Inhaling gases or vapors" 04 = "Eating poisonous plant/substance" 05 = "A venomous animal or plant" 06 = "Food poisoning" 07 = "Allergic reaction" 08 = "Something else" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE what_1l (default=32) 01 = "Driving/riding in motor vehicle" 02 = "Working at paid job" 03 = "Working around house/yard" 04 = "Attending school" 05 = "Unpaid work" 06 = "Sports" 07 = "Leisure activity" 08 = "Sleeping; resting; eating; drinking" 09 = "Cooking" 10 = "Being cared for" 11 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE what_2l (default=32) 00 = "No second response" 01 = "Driving/riding in motor vehicle" 02 = "Working at paid job" 03 = "Working around house/yard" 04 = "Attending school" 05 = "Unpaid work" 06 = "Sports" 07 = "Leisure activity" 08 = "Sleeping; resting; eating; drinking" 09 = "Cooking" 10 = "Being cared for" 11 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE what1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE what11l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whernewa (default=32) 01 = "Inside home" 02 = "Outside home" 03 = "School" 04 = "Child care center/preschool" 05 = "Residential institution" 06 = "Health care facility" 07 = "Street/highway" 08 = "Parking lot" 09 = "Sport facility; ath field; playground" 10 = "Trade and service areas" 11 = "Farm" 12 = "Park/recreation area" 13 = "River/lake/stream/ocean" 14 = "Industrial or construction area" 15 = "Other public building" 16 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE whernewb (default=32) 00 = "No second response" 01 = "Inside home" 02 = "Outside home" 03 = "School" 04 = "Child care center/preschool" 05 = "Residential institution" 06 = "Health care facility" 07 = "Street/highway" 08 = "Parking lot" 09 = "Sport facility; ath field; playground" 10 = "Trade and service areas" 11 = "Farm" 12 = "Park/recreation area" 13 = "River/lake/stream/ocean" 14 = "Industrial or construction area" 15 = "Other public building" 16 = "Other" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE whern1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern11l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern12l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern13l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern14l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern15l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whern16l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wkls (default=32) 1 = "Not employed at the time" 2 = "None" 3 = "Less than 1 day" 4 = "One to five days" 5 = "Six or more days" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE scls (default=32) 1 = "Not in school at the time" 2 = "None" 3 = "Less than 1 day" 4 = "One to five days" 5 = "Six or more days" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijadl (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE limtm (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ijiad (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hlimt (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE $icd9_1l (default=32) ""99998"" = "Not ascertained" ; VALUE $icd9_2l (default=32) ""99998"" = "Not ascertained" """ = " Not in Universe" ; VALUE $icd9_3l (default=32) ""99998"" = "Not ascertained" """ = " Not in Universe" ; VALUE $icd9_4l (default=32) ""99998"" = "Not ascertained" """ = " Not in Universe" ; VALUE $ecode_1l (default=32) ""99998"" = "Not ascertained" ; VALUE $ecode_2l (default=32) ""99998"" = "Not ascertained" """ = " Not in Universe" ; VALUE $ecode_3l (default=32) ""99998"" = "Not ascertained" """ = " Not in Universe" ; proc print data=library.nhis2003_injpoiep (obs=6); FORMAT rectype rectype. srvy_yr srvy_yr. ipepno $ipepno. ijdate_m ijdate_m. day day. ijdate_y ijdate_y. rpckdm rpckdm. ijmed_2 ijmed_2l. ijmed_3 ijmed_3l. ijmed_4 ijmed_4l. ijmed_5 ijmed_5l. ijmed_6 ijmed_6l. ijmed_7 ijmed_7l. ihno ihno. causnew causnew. ecausnew ecausnew. mvwho mvwho. mvtyp mvtyp. sbelt sbelt. helmt helmt. mvhit mvhit. burn burn. fallnew1 fallnewa. fallnew2 fallnewb. falln1 falln1l. falln2 falln2l. falln3 falln3l. falln4 falln4l. falln5 falln5l. falln6 falln6l. falln7 falln7l. falln8 falln8l. falln9 falln9l. falln10 falln10l. fwhy fwhy. animal animal. poitp poitp. what_1 what_1l. what_2 what_2l. what1 what1l. what2 what2l. what3 what3l. what4 what4l. what5 what5l. what6 what6l. what7 what7l. what8 what8l. what9 what9l. what10 what10l. what11 what11l. whernew1 whernewa. whernew2 whernewb. whern1 whern1l. whern2 whern2l. whern3 whern3l. whern4 whern4l. whern5 whern5l. whern6 whern6l. whern7 whern7l. whern8 whern8l. whern9 whern9l. whern10 whern10l. whern11 whern11l. whern12 whern12l. whern13 whern13l. whern14 whern14l. whern15 whern15l. whern16 whern16l. wkls wkls. scls scls. ijadl ijadl. limtm limtm. ijiad ijiad. hlimt hlimt. icd9_1 $icd9_1l. icd9_2 $icd9_2l. icd9_3 $icd9_3l. icd9_4 $icd9_4l. ecode_1 $ecode_1l. ecode_2 $ecode_2l. ecode_3 $ecode_3l. ; proc contents data=library.nhis2003_injpoiep; /* Copyright 2007 shared by the National Bureau of Economic Research and Jean Roth National Bureau of Economic Research. 1050 Massachusetts Avenue Cambridge, MA 02138 jroth@nber.org This program and all programs referenced in it are free software. You can redistribute the program or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */