*options obs=100 ; options nocenter ; /*------------------------------------------------ by Jean Roth Mon Jul 2 15:43:01 EDT 2007 This program reads the 1998 National Health Interview Survey 1998 samadult 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/1998/samadult.exe "; * The following line should contain the name of the SAS dataset ; %let dataset = nhis1998_samadult ; 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 intv_qrt length=3 label="Interview Quarter"; attrib sex length=3 label="Sex"; attrib age_p length=3 label="Age"; attrib origin length=3 label="Hispanic Ethnicity"; attrib hispan_p length=3 label="Hispanic subgroup detail"; attrib mrace_p length=3 label="Race coded to a single race group"; attrib racerec length=3 label="Race Recode"; attrib race length=3 label="OMB groups w/multiple race"; attrib hispcode length=3 label="Combined race/ethnicity recode"; attrib educ length=3 label="Highest level of school completed"; attrib ab_bl20k length=3 label=""; attrib rat_cat length=3 label="Ratio of fam inc to poverty threshold"; attrib r_maritl length=3 label="Marital status"; attrib fm_size length=3 label="Number of persons in family"; attrib region length=3 label="Region"; attrib msasizep length=3 label="Geographic Distribution - MSA size"; attrib wtia_sa length=4 label="Weight - Interim Annual"; attrib wtfa_sa length=4 label="Weight - Final Annual"; attrib stratum length=3 label="Stratum for variance estimation"; attrib psu length=3 label="PSU for variance estimation"; attrib dummy_ap length=3 label="Dummy Record Flag for Prevention Adult"; attrib hypev length=3 label="Ever been told you had hypertension"; attrib hypdifv length=3 label="Ever told had hypertension on 2+ visits"; attrib chdev length=3 label="Ever told you had coronary heart disease"; attrib angev length=3 label="Ever been told you had angina pectoris"; attrib miev length=3 label="Ever been told you had a heart attack"; attrib hrtev length=3 label="Ever told you had a heart cond/disease"; attrib strev length=3 label="Ever been told you had a stroke"; attrib ephev length=3 label="Ever been told you had emphysema"; attrib aasmev length=3 label="Ever been told you had asthma"; attrib aasmyr length=3 label="Had an asthma episode/attack, past 12 m"; attrib aasmeryr length=3 label="Had visit to ER due to asthma, past 12 m"; attrib ulcev length=3 label="Ever been told you had an ulcer"; attrib ulcyr length=3 label="Had an ulcer in past 12 months"; attrib canev length=3 label="Ever told by a doctor you had cancer"; attrib cnkind1 length=3 label="What kind of cancer...bladder"; attrib cnkind2 length=3 label="What kind of cancer...blood"; attrib cnkind3 length=3 label="What kind of cancer...bone"; attrib cnkind4 length=3 label="What kind of cancer...brain"; attrib cnkind5 length=3 label="What kind of cancer...breast"; attrib cnkind6 length=3 label="What kind of cancer...cervix"; attrib cnkind7 length=3 label="What kind of cancer...colon"; attrib cnkind8 length=3 label="What kind of cancer...esophagus"; attrib cnkind9 length=3 label="What kind of cancer...gallbladder"; attrib cnkind10 length=3 label="What kind of cancer...kidney"; attrib cnkind11 length=3 label="What kind of cancer...larynx-windpipe"; attrib cnkind12 length=3 label="What kind of cancer...leukemia"; attrib cnkind13 length=3 label="What kind of cancer...liver"; attrib cnkind14 length=3 label="What kind of cancer...lung"; attrib cnkind15 length=3 label="What kind of cancer...lymphoma"; attrib cnkind16 length=3 label="What kind of cancer...melanoma"; attrib cnkind17 length=3 label="What kind of cancer...mouth/tongue/lip"; attrib cnkind18 length=3 label="What kind of cancer...ovarian"; attrib cnkind19 length=3 label="What kind of cancer...pancreatic"; attrib cnkind20 length=3 label="What kind of cancer...prostate"; attrib cnkind21 length=3 label="What kind of cancer...rectum"; attrib cnkind22 length=3 label="What kind of cancer..skin (non-melanoma)"; attrib cnkind23 length=3 label="What kind of cancer...skin (DK kind)"; attrib cnkind24 length=3 label="Type of cancer..soft tissue (muscle)"; attrib cnkind25 length=3 label="What kind of cancer...stomach"; attrib cnkind26 length=3 label="What kind of cancer ... testicular"; attrib cnkind27 length=3 label="What kind of cancer...throat-pharynx"; attrib cnkind28 length=3 label="What kind of cancer...thyroid"; attrib cnkind29 length=3 label="What kind of cancer...uterine"; attrib cnkind30 length=3 label="What kind of cancer...other"; attrib cnkind31 length=3 label="What kind of cancer...more than 3 kinds"; attrib canage1 length=3 label="Age first diagnosed w/bladder cancer"; attrib canage2 length=3 label="Age first diagnosed w/cancer of blood"; attrib canage3 length=3 label="Age first diagnosed w/bone cancer"; attrib canage4 length=3 label="Age first diagnosed w/ brain cancer"; attrib canage5 length=3 label="Age first diagnosed w/breast cancer"; attrib canage6 length=3 label="Age first diagnosed w/cervical cancer"; attrib canage7 length=3 label="Age first diagnosed w/colon cancer"; attrib canage8 length=3 label="Age first diagnosed w/esophageal cancer"; attrib canage9 length=3 label="Age first diagnosed w/gallbladder cancer"; attrib canage10 length=3 label="Age first diagnosed w/kidney cancer"; attrib canage11 length=3 label="Age first diag w/cancer: larynx-windpipe"; attrib canage12 length=3 label="Age first diagnosed w/leukemia"; attrib canage13 length=3 label="Age first diagnosed w/liver cancer"; attrib canage14 length=3 label="Age first diagnosed w/lung cancer"; attrib canage15 length=3 label="Age first diagnosed w/lymphoma"; attrib canage16 length=3 label="Age first diagnosed w/melanoma"; attrib canage17 length=3 label="Age first diag w/mouth/tongue/lip cancer"; attrib canage18 length=3 label="Age first diagnosed w/ovarian cancer"; attrib canage19 length=3 label="Age first diagnosed w/pancreatic cancer"; attrib canage20 length=3 label="Age first diagnosed w/prostate cancer"; attrib canage21 length=3 label="Age first diagnosed w/cancer of rectum"; attrib canage22 length=3 label="Age first diag:skin cancer, non-melanoma"; attrib canage23 length=3 label="Age first diag w/skin cancer, DK kind"; attrib canage24 length=3 label="Age first diagnosed w/soft tissue cancer"; attrib canage25 length=3 label="Age first diagnosed w/stomach cancer"; attrib canage26 length=3 label="Age first diagnosed w/testicular cancer"; attrib canage27 length=3 label="Age first diag w/throat-pharynx cancer"; attrib canage28 length=3 label="Age first diagnosed w/thyroid cancer"; attrib canage29 length=3 label="Age first diagnosed w/uterine cancer"; attrib canage30 length=3 label="Age first diagnosed w/other cancer"; attrib dibev length=3 label="Ever been told you had diabetes"; attrib dibage length=3 label="Age first diagnosed w/diabetes"; attrib insln length=3 label="Are you NOW taking insulin"; attrib dibpill length=3 label="Are you now taking diabetic pills"; attrib ahayfyr length=3 label="Told that you had hayfever, past 12 m"; attrib sinyr length=3 label="Told that you had sinusitis, past 12 m"; attrib cbrchyr length=3 label="Told you had chronic bronchitis, 12 m"; attrib kidwkyr length=3 label="Told you had weak/failing kidneys, 12 m"; attrib livyr length=3 label="Told you had liver condition, past 12 m"; attrib jntyr length=3 label="Had pain/aching at joints, past 12 m"; attrib jntmo length=3 label="Joint symptoms present most days for 1 m"; attrib jntij length=3 label="Joint symptoms began because of injury"; attrib jntijln length=3 label="Duration of joint symptoms: # of units"; attrib jntijlt length=3 label="Duration of joint symptoms: Time units"; attrib jntijlm length=3 label="Duration of joint symptoms: (months)"; attrib jntyr1 length=3 label="Which joint affected...shoulder-right"; attrib jntyr2 length=3 label="Which joint affected...shoulder-left"; attrib jntyr3 length=3 label="Which joint affected...elbow-right"; attrib jntyr4 length=3 label="Which joint affected...elbow-left"; attrib jntyr5 length=3 label="Which joint affected...hip-right"; attrib jntyr6 length=3 label="Which joint affected...hip-left"; attrib jntyr7 length=3 label="Which joint affected...wrist-right"; attrib jntyr8 length=3 label="Which joint affected...wrist-left"; attrib jntyr9 length=3 label="Which joint affected...knee-right"; attrib jntyr10 length=3 label="Which joint affected...knee-left"; attrib jntyr11 length=3 label="Which joint affected...ankle-right"; attrib jntyr12 length=3 label="Which joint affected...ankle-left"; attrib jntyr13 length=3 label="Which joint affected...toes-right"; attrib jntyr14 length=3 label="Which joint affected...toes-left"; attrib jntyr15 length=3 label="Which jnt affected..fingers/thumb-right"; attrib jntyr16 length=3 label="Which jnt affected..fingers/thumb-left"; attrib jntyr17 length=3 label="Which joint affected...other, not listed"; attrib paineck length=3 label="Had neck pain, past 3 months"; attrib painlb length=3 label="Had low back pain, past 3 months"; attrib painleg length=3 label="Pain spread down leg/below knees"; attrib painface length=3 label="Had pain in jaw/front of ear, past 3 m"; attrib amigr length=3 label="Had severe headache/migraine, past 3 m"; attrib acold2w length=3 label="Had a head/chest cold past 2 weeks"; attrib aintil2w length=3 label="Had stomach prob w/vomit/diarrhea, 2 w"; attrib pregnow length=3 label="Are you currently pregnant"; attrib hearaid length=3 label="Had ever worn a hearing aid"; attrib ahearst length=3 label="Description of hearing w/o hearing aid"; attrib avision length=3 label="Trouble seeing even w/glasses/lenses"; attrib ablind length=3 label="Are you blind or unable to see at all"; attrib uppert length=3 label="Lost all of upper natural teeth"; attrib lowert length=3 label="Lost all of lower natural teeth"; attrib sad length=3 label="How often felt sad, past 30 days"; attrib nervous length=3 label="How often felt nervous, past 30 days"; attrib restless length=3 label="How often restless/fidgety, past 30 days"; attrib hopeless length=3 label="How often felt hopeless, past 30 days"; attrib effort length=3 label="Felt everything was an effort, past 30 d"; attrib worthls length=3 label="How often felt worthless, past 30 days"; attrib mhamtmo length=3 label="Feelings interfered w/life, past 30 days"; attrib wrklyr2 length=3 label="Work status: last week, past 12 m"; attrib wkdayr length=3 label="Number of work loss days, past 12 months"; attrib beddayr length=3 label="Number of bed days, past 12 months"; attrib ahstatyr length=3 label="Hlth better/worse/same, comp w/12m ago"; attrib speceq length=3 label="Have hlth prob that requires spec equip"; attrib flwalk length=3 label="How dif walk 1/4 mile w/o spec equip"; attrib flclimb length=3 label="How dif walk up 10 steps w/o spec equip"; attrib flstand length=3 label="How dif stand for 2 hrs w/o spec equip"; attrib flsit length=3 label="How dif sit for 2 hrs w/o spec equip"; attrib flstoop length=3 label="How dif stoop/bend/kneel w/o spec equip"; attrib flreach length=3 label="How dif reach over head w/o spec equip"; attrib flgrasp length=3 label="How dif grasp objects w/o spec equip"; attrib flcarry length=3 label="How dif lift/carry 10 lbs w/o spec equip"; attrib flpush length=3 label="How dif push large object w/o spec equip"; attrib flshop length=3 label="How dif go out to events w/o spec equip"; attrib flsocl length=3 label="How dif social activities w/o spec equip"; attrib flrelax length=3 label="How dif do acts to relax w/o spec equip"; attrib fla1ar length=3 label="Any functional limitation, all conds"; attrib aflhca1 length=3 label="Vision prob causes diff w/activity"; attrib alhcln1 length=3 label="Duration of vision prob: # of units"; attrib alhclt1 length=3 label="Duration of vision prob: Time unit"; attrib alhcly1 length=3 label="Duration of vision prob (in years)"; attrib alantr1 length=3 label="Duration of vision prob recode 2"; attrib aflhca2 length=3 label="Hearing prob causes dif w/activity"; attrib alhcln2 length=3 label="Dur of hearing prob: # of units"; attrib alhclt2 length=3 label="Dur of hearing prob: Time units"; attrib alhcly2 length=3 label="Dur of hearing prob (in years)"; attrib alantr2 length=3 label="Duration of hearing prob recode 2"; attrib aflhca3 length=3 label="Arthritis/rheumatism causes dif w/act"; attrib alhcln3 length=3 label="Duration of arthritis prob: # of units"; attrib alhclt3 length=3 label="Duration of arthritis prob: Time unit"; attrib alhcly3 length=3 label="Duration of arthritis prob (in years)"; attrib alantr3 length=3 label="Duration of arthritis prob recode 2"; attrib aflhca4 length=3 label="Back/neck prob causes dif w/activity"; attrib alhcln4 length=3 label="Duration of back/neck prob: # of units"; attrib alhclt4 length=3 label="Duration of back/neck prob: Time units"; attrib alhcly4 length=3 label="Duration of back/neck prob (in years)"; attrib alantr4 length=3 label="Duration of back/neck prob recode 2"; attrib aflhca5 length=3 label="Fract/bone/joint inj causes dif w/act"; attrib alhcln5 length=3 label="Dur frac/bone/joint inj: # of units"; attrib alhclt5 length=3 label="Duration fract/bone/joint inj: Time unit"; attrib alhcly5 length=3 label="Duration fract/bone/joint inj (in years)"; attrib alantr5 length=3 label="Duration fract/bone/joint inj recode 2"; attrib aflhca6 length=3 label="Other injury causes dif w/activity"; attrib alhcln6 length=3 label="Duration of other injury: # of units"; attrib alhclt6 length=3 label="Duration of other injury: Time units"; attrib alhcly6 length=3 label="Duration of other injury (in years)"; attrib alantr6 length=3 label="Duration of other injury recode 2"; attrib aflhca7 length=3 label="Heart prob causes dif w/activity"; attrib alhcln7 length=3 label="Duration of heart prob: # of units"; attrib alhclt7 length=3 label="Duration of heart prob: Time units"; attrib alhcly7 length=3 label="Duration of heart prob (in years)"; attrib alantr7 length=3 label="Duration of heart prob recode 2"; attrib aflhca8 length=3 label="Stroke causes dif w/activity"; attrib alhcln8 length=3 label="Duration of stroke: # of units"; attrib alhclt8 length=3 label="Duration of stroke: Time unit"; attrib alhcly8 length=3 label="Duration of stroke (in years)"; attrib alantr8 length=3 label="Duration of stroke recode 2"; attrib aflhca9 length=3 label="Hypertension causes dif w/activity"; attrib alhcln9 length=3 label="Duration of hypertension: # of units"; attrib alhclt9 length=3 label="Duration of hypertension: Time units"; attrib alhcly9 length=3 label="Duration of hypertension (in years)"; attrib alantr9 length=3 label="Duration of hypertension recode 2"; attrib aflhca10 length=3 label="Diabetes causes dif w/activity"; attrib alhcln10 length=3 label="Duration of diabetes: # of units"; attrib alhclt10 length=3 label="Duration of diabetes: Time units"; attrib alhcly10 length=3 label="Duration of diabetes (in years)"; attrib alantr10 length=3 label="Duration of diabetes recode 2"; attrib aflhca11 length=3 label="Lung/breathing prob causes dif w/act"; attrib alhcln11 length=3 label="Duration of lung prob: # of units"; attrib alhclt11 length=3 label="Duration of lung prob: Time units"; attrib alhcly11 length=3 label="Duration lung prob (in years)"; attrib alantr11 length=3 label="Duration of lung prob recode 2"; attrib aflhca12 length=3 label="Cancer causes dif w/activity"; attrib alhcln12 length=3 label="Duration of cancer: # of units"; attrib alhclt12 length=3 label="Duration of cancer: Time unit"; attrib alhcly12 length=3 label="Duration of cancer (in years)"; attrib alantr12 length=3 label="Duration of cancer recode 2"; attrib aflhca13 length=3 label="Birth defect causes dif w/activity"; attrib alhcln13 length=3 label="Duration of birth defect: # of units"; attrib alhclt13 length=3 label="Duration of birth defect: Time unit"; attrib alhcly13 length=3 label="Duration of birth defect (in years)"; attrib alantr13 length=3 label="Duration of birth defect recode 2"; attrib aflhca14 length=3 label="Mental retardation causes dif w/activity"; attrib alhcln14 length=3 label="Duration mental retardation: # of units"; attrib alhclt14 length=3 label="Duration mental retardation: Time unit"; attrib alhcly14 length=3 label="Duration mental retardation (in years)"; attrib alantr14 length=3 label="Duration of mental retardation recode 2"; attrib aflhca15 length=3 label="Other devel prob causes dif w/activity"; attrib alhcln15 length=3 label="Duration other devel prob: # of units"; attrib alhclt15 length=3 label="Duration other devel prob: Time units"; attrib alhcly15 length=3 label="Duration other devel prob (in years)"; attrib alantr15 length=3 label="Duration other devel prob recode 2"; attrib aflhca16 length=3 label="Senility causes dif w/activity"; attrib alhcln16 length=3 label="Duration of senility: # of units"; attrib alhclt16 length=3 label="Duration of senility: Time units"; attrib alhcly16 length=3 label="Duration of senility (in years)"; attrib alantr16 length=3 label="Duration of senility recode 2"; attrib aflhca17 length=3 label="Dep/anx/emot prob causes dif w/activity"; attrib alhcln17 length=3 label="Duration dep/anx/emot prob: # of units"; attrib alhclt17 length=3 label="Duration dep/anx/emot prob: Time units"; attrib alhcly17 length=3 label="Duration dep/anx/emot prob (in years)"; attrib alantr17 length=3 label="Duration dep/anx/emot prob recode 2"; attrib aflhca18 length=3 label="Weight prob causes dif w/activity"; attrib alhcln18 length=3 label="Duration of weight prob: # of units"; attrib alhclt18 length=3 label="Duration of weight prob: Time units"; attrib alhcly18 length=3 label="Duration of weight prob (in years)"; attrib alantr18 length=3 label="Duration of weight prob recode 2"; attrib aflhca19 length=3 label="Missing limb/finger causes dif w/act"; attrib alhcln19 length=3 label="Duration missing limb/finger: # of units"; attrib alhclt19 length=3 label="Duration missing limb/finger: Time units"; attrib alhcly19 length=3 label="Duration missing limb/finger (in years)"; attrib alantr19 length=3 label="Duration missing limb/finger recode 2"; attrib aflhca20 length=3 label="Musculoskel prob causes dif w/activity"; attrib alhcln20 length=3 label="Duration musculoskel prob: # of units"; attrib alhclt20 length=3 label="Duration musculoskel prob: Time units"; attrib alhcly20 length=3 label="Duration musculoskel prob (in years)"; attrib alantr20 length=3 label="Duration musculoskel prob recode 2"; attrib aflhca21 length=3 label="Circulatory prob causes dif w/activity"; attrib alhcln21 length=3 label="Duration of circulatory prob: # of units"; attrib alhclt21 length=3 label="Duration of circulatory prob: Time units"; attrib alhcly21 length=3 label="Duration of circulatory prob (in years)"; attrib alantr21 length=3 label="Duration of circulatory prob recode 2"; attrib aflhca22 length=3 label="Endocrine prob causes dif w/activity"; attrib alhcln22 length=3 label="Duration of endocrine prob: # of units"; attrib alhclt22 length=3 label="Duration of endocrine prob: Time units"; attrib alhcly22 length=3 label="Duration of endocrine prob (in years)"; attrib alantr22 length=3 label="Duration of endocrine prob recode 2"; attrib aflhca23 length=3 label="Nervous sys prob causes dif w/activity"; attrib alhcln23 length=3 label="Duration of nervous sys prob: # of units"; attrib alhclt23 length=3 label="Duration of nervous sys prob: Time unit"; attrib alhcly23 length=3 label="Duration of nervous sys prob (in years)"; attrib alantr23 length=3 label="Duration of nervous system prob recode 2"; attrib aflhca24 length=3 label="Digestive prob causes dif w/activity"; attrib alhcln24 length=3 label="Duration of digestive prob: # of units"; attrib alhclt24 length=3 label="Duration of digestive prob: Time unit"; attrib alhcly24 length=3 label="Duration of digestive prob (in years)"; attrib alantr24 length=3 label="Duration of digestive prob recode 2"; attrib aflhca25 length=3 label="Genitourinary prob causes dif w/activity"; attrib alhcln25 length=3 label="Duration genitourinary prob: # of units"; attrib alhclt25 length=3 label="Duration genitourinary prob: Time unit"; attrib alhcly25 length=3 label="Duration genitourinary prob (in years)"; attrib alantr25 length=3 label="Duration of genitourinary prob recode 2"; attrib aflhca26 length=3 label="Skin prob causes dif w/activity"; attrib alhcln26 length=3 label="Duration of skin prob: # of units"; attrib alhclt26 length=3 label="Duration of skin prob: Time unit"; attrib alhcly26 length=3 label="Duration of skin prob (in years)"; attrib alantr26 length=3 label="Duration of skin prob recode 2"; attrib aflhca27 length=3 label="Blood prob causes dif w/activity"; attrib alhcln27 length=3 label="Duration of blood prob: # of units"; attrib alhclt27 length=3 label="Duration of blood prob: Time unit"; attrib alhcly27 length=3 label="Duration of blood prob (in years)"; attrib alantr27 length=3 label="Duration of blood prob recode 2"; attrib aflhca28 length=3 label="Benign tumor causes dif w/activity"; attrib alhcln28 length=3 label="Duration of benign tumor: # of units"; attrib alhclt28 length=3 label="Duration of benign tumor: Time unit"; attrib alhcly28 length=3 label="Duration of benign tumor (in years)"; attrib alantr28 length=3 label="Duration of benign tumor recode 2"; attrib aflhca29 length=3 label="Alcohol or drug prob causes dif w/act"; attrib alhcln29 length=3 label="Duration alcohol/drug prob: # of units"; attrib alhclt29 length=3 label="Duration alcohol/drug prob: Time unit"; attrib alhcly29 length=3 label="Duration alcohol/drug prob (in years)"; attrib alantr29 length=3 label="Duration alcohol/drug prob recode 2"; attrib aflhca30 length=3 label="Other mental prob causes dif w/activity"; attrib alhcln30 length=3 label="Duration other mental prob: # of units"; attrib alhclt30 length=3 label="Duration other mental prob: Time unit"; attrib alhcly30 length=3 label="Duration other mental prob (in years)"; attrib alantr30 length=3 label="Duration other mental prob recode 2"; attrib aflhca31 length=3 label="Surgical after-effects cause dif w/act"; attrib alhcln31 length=3 label="Dur surgical after-effects: # of units"; attrib alhclt31 length=3 label="Dur surgical after-effects: Time unit"; attrib alhcly31 length=3 label="Dur surgical after-effects (in years)"; attrib alantr31 length=3 label="Duration surgical after-effects recode 2"; attrib aflhca32 length=3 label="'Old age' causes dif w/activity"; attrib alhcln32 length=3 label="Duration of 'old age': # of units"; attrib alhclt32 length=3 label="Duration of 'old age': Time unit"; attrib alhcly32 length=3 label="Duration of 'old age' (in years)"; attrib alantr32 length=3 label="Duration of 'old age' recode 2"; attrib aflhca33 length=3 label="Fatigue prob causes dif w/activity"; attrib alhcln33 length=3 label="Duration of fatigue: # of units"; attrib alhclt33 length=3 label="Duration of fatigue: Time unit"; attrib alhcly33 length=3 label="Duration of fatigue (in years)"; attrib alantr33 length=3 label="Duration of fatigue recode 2"; attrib aflhca34 length=3 label="Pregnancy-related prob causes dif w/act"; attrib alhcln34 length=3 label="Dur pregnancy prob: # of units"; attrib alhclt34 length=3 label="Dur pregnancy prob: Time unit"; attrib alhcly34 length=3 label="Dur pregnancy prob (in years)"; attrib alantr34 length=3 label="Dur pregnancy prob recode 2"; attrib aflhca90 length=3 label="Other N.E.C. prob (1) causes dif w/act"; attrib alhcln90 length=3 label="Duration otr N.E.C. prob (1): # of units"; attrib alhclt90 length=3 label="Duration otr N.E.C. prob (1): Time units"; attrib alhcly90 length=3 label="Duration otr N.E.C. prob (1) (in years)"; attrib alantr90 length=3 label="Duration otr N.E.C. prob (1) recode 2"; attrib aflhca91 length=3 label="Other N.E.C. prob (2) causes dif w/act"; attrib alhcln91 length=3 label="Duration otr N.E.C. prob (2): # of units"; attrib alhclt91 length=3 label="Duration otr N.E.C. prob (2): Time units"; attrib alhcly91 length=3 label="Duration otr N.E.C. prob (2) (in years)"; attrib alantr91 length=3 label="Duration otr N.E.C. prob(2) recode 2"; attrib alcndr1 length=3 label="Vision prob condition status"; attrib alcndr2 length=3 label="Hearing prob condition status"; attrib alcndr3 length=3 label="Arthritis/rheum condition status"; attrib alcndr4 length=3 label="Back/neck prob condition status"; attrib alcndr5 length=3 label="Fract/bone/joint injury cond status"; attrib alcndr6 length=3 label="Other injury condition status"; attrib alcndr7 length=3 label="Heart problem condition status"; attrib alcndr8 length=3 label="Stroke condition status"; attrib alcndr9 length=3 label="Hypertension condition status"; attrib alcndr10 length=3 label="Diabetes condition status"; attrib alcndr11 length=3 label="Lung/breath problem condition status"; attrib alcndr12 length=3 label="Cancer condition status"; attrib alcndr13 length=3 label="Birth defect condition status"; attrib alcndr14 length=3 label="Mental retardation cond status"; attrib alcndr15 length=3 label="Other developmental prob cond status"; attrib alcndr16 length=3 label="Senility cond status"; attrib alcndr17 length=3 label="Dep/anx/emot prob cond status"; attrib alcndr18 length=3 label="Weight prob cond status"; attrib alcndr19 length=3 label="Amputee condition status"; attrib alcndr20 length=3 label="Musculoskel prob cond status"; attrib alcndr21 length=3 label="Circulatory cond status"; attrib alcndr22 length=3 label="Endocrine cond status"; attrib alcndr23 length=3 label="Nervous sys cond status"; attrib alcndr24 length=3 label="Digestive prob cond status"; attrib alcndr25 length=3 label="Genitourinary problem cond status"; attrib alcndr26 length=3 label="Skin prob condition status"; attrib alcndr27 length=3 label="Blood prob condition status"; attrib alcndr28 length=3 label="Benign tumor cond status"; attrib alcndr29 length=3 label="Alcohol or drug prob cond status"; attrib alcndr30 length=3 label="Other mental problem cond status"; attrib alcndr31 length=3 label="Surgical after-effects cond status"; attrib alcndr32 length=3 label="'Old age' condition status"; attrib alcndr33 length=3 label="Fatigue condition status"; attrib alcndr34 length=3 label="Pregnancy condition status"; attrib alcndr90 length=3 label="Other impair/prob(1) cond stat"; attrib alcndr91 length=3 label="Other impair/prob(2) cond stat"; attrib alcndrt length=3 label="Chronic cond recode"; attrib alchronr length=3 label="Overall functl lim recode by cond status"; attrib smkev length=3 label="Ever smoked 100 cigarettes"; attrib smkreg length=3 label="Age first smoked fairly regularly"; attrib smknow length=3 label="Smoke freq: everyday/somedays/not at all"; attrib smkqtno length=3 label="Time since quit smoking: # of units"; attrib smkqttp length=3 label="Time since quit smoking: Time unit"; attrib smkqty length=3 label="Time since quit smoking (in years)"; attrib smkqtd length=3 label="Quit smoking since {month, 1 year ago}"; attrib cigsda1 length=3 label="Number cigs per day (daily smokers)"; attrib cigdamo length=3 label="Number days smoked in past 30 days"; attrib cigsda2 length=3 label="Number cigs per day (some day smokers)"; attrib cigsday length=3 label="Number cigs a day (all smokers)"; attrib smkstat1 length=3 label="Smoking Status: Recode 1"; attrib smkstat2 length=3 label="Smoking Status: Recode 2"; attrib smkstat3 length=3 label="Smoking Status: Recode 3"; attrib cigqtyr length=3 label="Tried quit smoking 1+ days, past 12 m"; attrib vigno length=3 label="Freq vigorous activity: # of units"; attrib vigtp length=3 label="Freq vigorous activity: Time units"; attrib vigfreqw length=3 label="Freq vigorous activity (times per wk)"; attrib viglngno length=3 label="Duration vig activity: # of units"; attrib viglngtp length=3 label="Duration vigorous activity: Time unit"; attrib vigmin length=3 label="Duration vigorous activity (in minutes)"; attrib viglongd length=3 label="Dur of vigorous activity: <20 or 20+ min"; attrib modno length=3 label="Freq moderate activity: # of units"; attrib modtp length=3 label="Freq moderate activity: Time units"; attrib modfreqw length=3 label="Freq moderate activity (times per wk)"; attrib modlngno length=3 label="Duration mod activity: # of units"; attrib modlngtp length=3 label="Duration mod activity: Time unit"; attrib modmin length=3 label="Duration mod activity (in minutes)"; attrib modlongd length=3 label="Dur of moderate activity: <20 or 20+ min"; attrib strngno length=3 label="Freq strengthening activity: # of units"; attrib strngtp length=3 label="Freq strengthening activity: Time unit"; attrib strfreqw length=3 label="Freq strength activity (times per wk)"; attrib alc1yr length=3 label="Ever had 12+ drinks in any one year"; attrib alclife length=3 label="Had 12+ drinks in ENTIRE LIFE"; attrib alc12mno length=3 label="Freq drank alcohol past year: # of units"; attrib alc12mtp length=3 label="Freq drank alcohol past year: Time unit"; attrib alc12mmo length=3 label="Freq drank alcohol: Days per month"; attrib alc12mwk length=3 label="Freq drank alcohol: Days per week"; attrib alc12myr length=3 label="Freq drank alcohol: Days in past year"; attrib alcamt length=3 label="Average # drinks on days drank"; attrib alc5upno length=3 label="Days had 5+ drinks, past year: # of days"; attrib alc5uptp length=3 label="Days had 5+ drinks past year: Time unit"; attrib alc5upyr length=3 label="Number of days had 5+ drinks past year"; attrib alcstat1 length=3 label="Alcohol Drinking Status: Recode"; attrib aheight length=3 label="Total height in inches"; attrib aweightp length=3 label="Weight w/o shoes (pounds)"; attrib desirewt length=3 label="Desirable Body Weight"; attrib bmi length=4 label="Body Mass Index (BMI)"; attrib ausualpl length=3 label="Place USUALLY go when sick"; attrib aplkind length=3 label="Place to go when sick (most often)"; attrib ahcplrou length=3 label="USUALLY go there for routine/prev care"; attrib ahcplknd length=3 label="Where do you go for routine prev care?"; attrib sourcela length=3 label="Source of medical care recode"; attrib ahcchgyr length=3 label="Change hlth care provider in past 12 m"; attrib ahcchghi length=3 label="Change due to hlth insurance"; attrib ahcdlyr1 length=3 label="Couldn't get through on phone"; attrib ahcdlyr2 length=3 label="Couldn't get appt soon enough"; attrib ahcdlyr3 length=3 label="Wait too long in doctor's office"; attrib ahcdlyr4 length=3 label="Not open when you could go"; attrib ahcdlyr5 length=3 label="No transportation"; attrib ahcafyr1 length=3 label="Can't afford presc medicine"; attrib ahcafyr2 length=3 label="Can't afford mental hlth care/counseling"; attrib ahcafyr3 length=3 label="Can't afford dental care"; attrib adenlong length=3 label="When did you last see/talk to dentist?"; attrib ahcsyr1 length=3 label="Talk to mental hlth prof?"; attrib ahcsyr2 length=3 label="Talk to eye doctor?"; attrib ahcsyr3 length=3 label="Talk to foot doctor?"; attrib ahcsyr4 length=3 label="Talk to a chiropractor?"; attrib ahcsyr5 length=3 label="Talk to therapist (PT, OT, RT etc)?"; attrib ahcsyr6 length=3 label="Talk to a RN/PA/midwife?"; attrib ahcsyr7 length=3 label="Spoke/seen OB/GYN past 12 m?"; attrib ahcsyr8 length=3 label="Past 12 m, seen a med specialist"; attrib ahcsyr9 length=3 label="Past 12 m, seen a general doctor"; attrib ahcsyr10 length=3 label="Does that Dr treat both kids and adults"; attrib ahernoyr length=3 label="# times in ER/ED past 12 m"; attrib ahchyr length=3 label="Past 12 m get home care from hlth prof"; attrib ahchmoyr length=3 label="How many months of home care?"; attrib ahchnoyr length=3 label="Total number of home visits"; attrib ahcnoyr length=3 label="Total number of office visits"; attrib asrgyr length=3 label="Had surgery in the past 12 m"; attrib asrgnoyr length=3 label="Total # of surgeries in the past 12 m"; attrib amdlong length=3 label="Last time you saw/spoke to hlth prof"; attrib shtfluyr length=3 label="Had flu shot past 12 m"; attrib shtpnuyr length=3 label="Ever had pneumonia vaccination"; attrib indstry1 length=3 label="Detailed industry classification"; attrib indstry2 length=3 label="Simple industry classification"; attrib occup1 length=3 label="Detailed occupation classification"; attrib occup2 length=3 label="Simple occupation classification"; attrib wrkcat length=3 label="Class of worker"; attrib locallno length=3 label="Number of employees at work"; attrib locprtno length=3 label="Number of employees at work"; attrib yrswrk_p length=3 label="Years on the job"; attrib wrklongd length=3 label="Duration at this job"; attrib hourpd length=3 label="Paid by the hour"; attrib pdsick length=3 label="Paid sick leave"; attrib onejob length=3 label="Have more than one job"; attrib wrkcatot length=3 label="Type of employment at second job"; attrib businc length=3 label="Second job incorporated business"; attrib bldgv length=3 label="Given blood since March 1985"; attrib bldg12m length=3 label="Donated blood past 12 m"; attrib aidstst length=3 label="Blood tested for AIDS virus infection"; attrib whytsu01 length=3 label="Why not tested...no reason"; attrib whytsu02 length=3 label="Why not tested...consider self no risk"; attrib whytsu03 length=3 label="Why not tested...dr. did not recommend"; attrib whytsu04 length=3 label="Why not tested...believe test inaccurate"; attrib whytsu05 length=3 label="Why not tested... nothing done if pos."; attrib whytsu06 length=3 label="Why not tested...don't like needles"; attrib whytsu07 length=3 label="Why not tested...distrust rslts confdntl"; attrib whytsu08 length=3 label="Why not tested...afraid of losing job"; attrib whytsu09 length=3 label="Why not tested...other reason (1)"; attrib whytsu10 length=3 label="Why not tested...other reason (2)"; attrib tst12m length=3 label="Blood test in past 12 m"; attrib reatot01 length=3 label="Reason for test...Find out if infected"; attrib reatot02 length=3 label="Reason for test...Dr's request"; attrib reatot03 length=3 label="Reason for test...Hlth Dept's request"; attrib reatot04 length=3 label="Reason for test...Sex partner's request"; attrib reatot05 length=3 label="Reason for test...Hosp/Surg procedure"; attrib reatot06 length=3 label="Reason for test...For hlth/life ins"; attrib reatot07 length=3 label="Reason for test...Guidline for hlth wkrs"; attrib reatot08 length=3 label="Reason for test...Apply for a new job"; attrib reatot09 length=3 label="Reason for test...Military purposes"; attrib reatot10 length=3 label="Reason for test...Immigration"; attrib reatot11 length=3 label="Reason for test...Because of pregnancy"; attrib reatot12 length=3 label="Reason for test...Other reason (1)"; attrib reatot13 length=3 label="Reason for test...Other reason (2)"; attrib lastst length=3 label="Location of last AIDS blood test"; attrib altst length=3 label="Get results of last blood test"; attrib talkhp length=3 label="Hlth prof talk to you about AIDS"; attrib rsgvn length=3 label="Given results by person/phone/mail/otr"; attrib extst12m length=3 label="Blood test in the next 12 m"; attrib why12u01 length=3 label="Why next 12 m...Find out if infected"; attrib why12u02 length=3 label="Why next 12 m...Hosp/Surg procedure"; attrib why12u03 length=3 label="Why next 12 m...Apply for life/hlth ins"; attrib why12u04 length=3 label="Why next 12 m...Apply for a job"; attrib why12u05 length=3 label="Why next 12 m...Join the military"; attrib why12u06 length=3 label="Why next 12 m...Guidelines for hlth wkrs"; attrib why12u07 length=3 label="Why next 12 m...Req incl auto AIDS test"; attrib why12u08 length=3 label="Why next 12 m...Req in non-hlth employ"; attrib why12u09 length=3 label="Why next 12 m...Sexual relationship"; attrib why12u10 length=3 label="Why next 12 m...Planned pregnancy"; attrib why12u11 length=3 label="Why next 12 m...Other reason (1)"; attrib why12u12 length=3 label="Why next 12 m...Other reason (2)"; attrib whertst length=3 label="Location for AIDS blood test"; attrib chnsadsp length=3 label="Chances of getting AIDS virus"; attrib stmtru length=3 label="Are any of these statements true"; INPUT @1 rectype 2. @3 srvy_yr 4. @7 hhx $6. @13 fmx $2. @15 px $2. @17 intv_qrt 1. @18 sex 1. @19 age_p 2. @21 origin 1. @22 hispan_p 2. @24 mrace_p 2. @26 racerec 1. @27 race 1. @28 hispcode 1. @29 educ 2. @31 ab_bl20k 2. @33 rat_cat 2. @35 r_maritl 1. @36 fm_size 2. @38 region 1. @39 msasizep 1. @40 wtia_sa 6. @46 wtfa_sa 6. @52 stratum 3. @55 psu 1. @56 dummy_ap 1. @57 hypev 1. @58 hypdifv 1. @59 chdev 1. @60 angev 1. @61 miev 1. @62 hrtev 1. @63 strev 1. @64 ephev 1. @65 aasmev 1. @66 aasmyr 1. @67 aasmeryr 1. @68 ulcev 1. @69 ulcyr 1. @70 canev 1. @71 cnkind1 1. @72 cnkind2 1. @73 cnkind3 1. @74 cnkind4 1. @75 cnkind5 1. @76 cnkind6 1. @77 cnkind7 1. @78 cnkind8 1. @79 cnkind9 1. @80 cnkind10 1. @81 cnkind11 1. @82 cnkind12 1. @83 cnkind13 1. @84 cnkind14 1. @85 cnkind15 1. @86 cnkind16 1. @87 cnkind17 1. @88 cnkind18 1. @89 cnkind19 1. @90 cnkind20 1. @91 cnkind21 1. @92 cnkind22 1. @93 cnkind23 1. @94 cnkind24 1. @95 cnkind25 1. @96 cnkind26 1. @97 cnkind27 1. @98 cnkind28 1. @99 cnkind29 1. @100 cnkind30 1. @101 cnkind31 1. @102 canage1 2. @104 canage2 2. @106 canage3 2. @108 canage4 2. @110 canage5 2. @112 canage6 2. @114 canage7 2. @116 canage8 2. @118 canage9 2. @120 canage10 2. @122 canage11 2. @124 canage12 2. @126 canage13 2. @128 canage14 2. @130 canage15 2. @132 canage16 2. @134 canage17 2. @136 canage18 2. @138 canage19 2. @140 canage20 2. @142 canage21 2. @144 canage22 2. @146 canage23 2. @148 canage24 2. @150 canage25 2. @152 canage26 2. @154 canage27 2. @156 canage28 2. @158 canage29 2. @160 canage30 2. @162 dibev 1. @163 dibage 2. @165 insln 1. @166 dibpill 1. @167 ahayfyr 1. @168 sinyr 1. @169 cbrchyr 1. @170 kidwkyr 1. @171 livyr 1. @172 jntyr 1. @173 jntmo 1. @174 jntij 1. @175 jntijln 2. @177 jntijlt 1. @178 jntijlm 2. @180 jntyr1 1. @181 jntyr2 1. @182 jntyr3 1. @183 jntyr4 1. @184 jntyr5 1. @185 jntyr6 1. @186 jntyr7 1. @187 jntyr8 1. @188 jntyr9 1. @189 jntyr10 1. @190 jntyr11 1. @191 jntyr12 1. @192 jntyr13 1. @193 jntyr14 1. @194 jntyr15 1. @195 jntyr16 1. @196 jntyr17 1. @197 paineck 1. @198 painlb 1. @199 painleg 1. @200 painface 1. @201 amigr 1. @202 acold2w 1. @203 aintil2w 1. @204 pregnow 1. @205 hearaid 1. @206 ahearst 1. @207 avision 1. @208 ablind 1. @209 uppert 1. @210 lowert 1. @211 sad 1. @212 nervous 1. @213 restless 1. @214 hopeless 1. @215 effort 1. @216 worthls 1. @217 mhamtmo 1. @218 wrklyr2 1. @219 wkdayr 3. @222 beddayr 3. @225 ahstatyr 1. @226 speceq 1. @227 flwalk 1. @228 flclimb 1. @229 flstand 1. @230 flsit 1. @231 flstoop 1. @232 flreach 1. @233 flgrasp 1. @234 flcarry 1. @235 flpush 1. @236 flshop 1. @237 flsocl 1. @238 flrelax 1. @239 fla1ar 1. @240 aflhca1 1. @241 alhcln1 2. @243 alhclt1 1. @244 alhcly1 2. @246 alantr1 2. @248 aflhca2 1. @249 alhcln2 2. @251 alhclt2 1. @252 alhcly2 2. @254 alantr2 2. @256 aflhca3 1. @257 alhcln3 2. @259 alhclt3 1. @260 alhcly3 2. @262 alantr3 2. @264 aflhca4 1. @265 alhcln4 2. @267 alhclt4 1. @268 alhcly4 2. @270 alantr4 2. @272 aflhca5 1. @273 alhcln5 2. @275 alhclt5 1. @276 alhcly5 2. @278 alantr5 2. @280 aflhca6 1. @281 alhcln6 2. @283 alhclt6 1. @284 alhcly6 2. @286 alantr6 2. @288 aflhca7 1. @289 alhcln7 2. @291 alhclt7 1. @292 alhcly7 2. @294 alantr7 2. @296 aflhca8 1. @297 alhcln8 2. @299 alhclt8 1. @300 alhcly8 2. @302 alantr8 2. @304 aflhca9 1. @305 alhcln9 2. @307 alhclt9 1. @308 alhcly9 2. @310 alantr9 2. @312 aflhca10 1. @313 alhcln10 2. @315 alhclt10 1. @316 alhcly10 2. @318 alantr10 2. @320 aflhca11 1. @321 alhcln11 2. @323 alhclt11 1. @324 alhcly11 2. @326 alantr11 2. @328 aflhca12 1. @329 alhcln12 2. @331 alhclt12 1. @332 alhcly12 2. @334 alantr12 2. @336 aflhca13 1. @337 alhcln13 2. @339 alhclt13 1. @340 alhcly13 2. @342 alantr13 2. @344 aflhca14 1. @345 alhcln14 2. @347 alhclt14 1. @348 alhcly14 2. @350 alantr14 2. @352 aflhca15 1. @353 alhcln15 2. @355 alhclt15 1. @356 alhcly15 2. @358 alantr15 2. @360 aflhca16 1. @361 alhcln16 2. @363 alhclt16 1. @364 alhcly16 2. @366 alantr16 2. @368 aflhca17 1. @369 alhcln17 2. @371 alhclt17 1. @372 alhcly17 2. @374 alantr17 2. @376 aflhca18 1. @377 alhcln18 2. @379 alhclt18 1. @380 alhcly18 2. @382 alantr18 2. @384 aflhca19 1. @385 alhcln19 2. @387 alhclt19 1. @388 alhcly19 2. @390 alantr19 2. @392 aflhca20 1. @393 alhcln20 2. @395 alhclt20 1. @396 alhcly20 2. @398 alantr20 2. @400 aflhca21 1. @401 alhcln21 2. @403 alhclt21 1. @404 alhcly21 2. @406 alantr21 2. @408 aflhca22 1. @409 alhcln22 2. @411 alhclt22 1. @412 alhcly22 2. @414 alantr22 2. @416 aflhca23 1. @417 alhcln23 2. @419 alhclt23 1. @420 alhcly23 2. @422 alantr23 2. @424 aflhca24 1. @425 alhcln24 2. @427 alhclt24 1. @428 alhcly24 2. @430 alantr24 2. @432 aflhca25 1. @433 alhcln25 2. @435 alhclt25 1. @436 alhcly25 2. @438 alantr25 2. @440 aflhca26 1. @441 alhcln26 2. @443 alhclt26 1. @444 alhcly26 2. @446 alantr26 2. @448 aflhca27 1. @449 alhcln27 2. @451 alhclt27 1. @452 alhcly27 2. @454 alantr27 2. @456 aflhca28 1. @457 alhcln28 2. @459 alhclt28 1. @460 alhcly28 2. @462 alantr28 2. @464 aflhca29 1. @465 alhcln29 2. @467 alhclt29 1. @468 alhcly29 2. @470 alantr29 2. @472 aflhca30 1. @473 alhcln30 2. @475 alhclt30 1. @476 alhcly30 2. @478 alantr30 2. @480 aflhca31 1. @481 alhcln31 2. @483 alhclt31 1. @484 alhcly31 2. @486 alantr31 2. @488 aflhca32 1. @489 alhcln32 2. @491 alhclt32 1. @492 alhcly32 2. @494 alantr32 2. @496 aflhca33 1. @497 alhcln33 2. @499 alhclt33 1. @500 alhcly33 2. @502 alantr33 2. @504 aflhca34 1. @505 alhcln34 2. @507 alhclt34 1. @508 alhcly34 2. @510 alantr34 2. @512 aflhca90 1. @513 alhcln90 2. @515 alhclt90 1. @516 alhcly90 2. @518 alantr90 2. @520 aflhca91 1. @521 alhcln91 2. @523 alhclt91 1. @524 alhcly91 2. @526 alantr91 2. @528 alcndr1 1. @529 alcndr2 1. @530 alcndr3 1. @531 alcndr4 1. @532 alcndr5 1. @533 alcndr6 1. @534 alcndr7 1. @535 alcndr8 1. @536 alcndr9 1. @537 alcndr10 1. @538 alcndr11 1. @539 alcndr12 1. @540 alcndr13 1. @541 alcndr14 1. @542 alcndr15 1. @543 alcndr16 1. @544 alcndr17 1. @545 alcndr18 1. @546 alcndr19 1. @547 alcndr20 1. @548 alcndr21 1. @549 alcndr22 1. @550 alcndr23 1. @551 alcndr24 1. @552 alcndr25 1. @553 alcndr26 1. @554 alcndr27 1. @555 alcndr28 1. @556 alcndr29 1. @557 alcndr30 1. @558 alcndr31 1. @559 alcndr32 1. @560 alcndr33 1. @561 alcndr34 1. @562 alcndr90 1. @563 alcndr91 1. @564 alcndrt 1. @565 alchronr 1. @566 smkev 1. @567 smkreg 2. @569 smknow 1. @570 smkqtno 2. @572 smkqttp 1. @573 smkqty 2. @575 smkqtd 1. @576 cigsda1 2. @578 cigdamo 2. @580 cigsda2 2. @582 cigsday 2. @584 smkstat1 1. @585 smkstat2 1. @586 smkstat3 1. @587 cigqtyr 1. @588 vigno 3. @591 vigtp 1. @592 vigfreqw 2. @594 viglngno 3. @597 viglngtp 1. @598 vigmin 3. @601 viglongd 1. @602 modno 3. @605 modtp 1. @606 modfreqw 2. @608 modlngno 3. @611 modlngtp 1. @612 modmin 3. @615 modlongd 1. @616 strngno 3. @619 strngtp 1. @620 strfreqw 2. @622 alc1yr 1. @623 alclife 1. @624 alc12mno 3. @627 alc12mtp 1. @628 alc12mmo 2. @630 alc12mwk 2. @632 alc12myr 3. @635 alcamt 2. @637 alc5upno 3. @640 alc5uptp 1. @641 alc5upyr 3. @644 alcstat1 1. @645 aheight 2. @647 aweightp 3. @650 desirewt 1. @651 bmi 4. @655 ausualpl 1. @656 aplkind 1. @657 ahcplrou 1. @658 ahcplknd 1. @659 sourcela 2. @661 ahcchgyr 1. @662 ahcchghi 1. @663 ahcdlyr1 1. @664 ahcdlyr2 1. @665 ahcdlyr3 1. @666 ahcdlyr4 1. @667 ahcdlyr5 1. @668 ahcafyr1 1. @669 ahcafyr2 1. @670 ahcafyr3 1. @671 adenlong 1. @672 ahcsyr1 1. @673 ahcsyr2 1. @674 ahcsyr3 1. @675 ahcsyr4 1. @676 ahcsyr5 1. @677 ahcsyr6 1. @678 ahcsyr7 1. @679 ahcsyr8 1. @680 ahcsyr9 1. @681 ahcsyr10 1. @682 ahernoyr 1. @683 ahchyr 1. @684 ahchmoyr 2. @686 ahchnoyr 1. @687 ahcnoyr 1. @688 asrgyr 1. @689 asrgnoyr 2. @691 amdlong 1. @692 shtfluyr 1. @693 shtpnuyr 1. @694 indstry1 2. @696 indstry2 2. @698 occup1 2. @700 occup2 2. @702 wrkcat 1. @703 locallno 2. @705 locprtno 2. @707 yrswrk_p 2. @709 wrklongd 1. @710 hourpd 1. @711 pdsick 1. @712 onejob 1. @713 wrkcatot 1. @714 businc 1. @715 bldgv 1. @716 bldg12m 1. @717 aidstst 1. @718 whytsu01 1. @719 whytsu02 1. @720 whytsu03 1. @721 whytsu04 1. @722 whytsu05 1. @723 whytsu06 1. @724 whytsu07 1. @725 whytsu08 1. @726 whytsu09 1. @727 whytsu10 1. @728 tst12m 1. @729 reatot01 1. @730 reatot02 1. @731 reatot03 1. @732 reatot04 1. @733 reatot05 1. @734 reatot06 1. @735 reatot07 1. @736 reatot08 1. @737 reatot09 1. @738 reatot10 1. @739 reatot11 1. @740 reatot12 1. @741 reatot13 1. @742 lastst 2. @744 altst 1. @745 talkhp 1. @746 rsgvn 1. @747 extst12m 1. @748 why12u01 1. @749 why12u02 1. @750 why12u03 1. @751 why12u04 1. @752 why12u05 1. @753 why12u06 1. @754 why12u07 1. @755 why12u08 1. @756 why12u09 1. @757 why12u10 1. @758 why12u11 1. @759 why12u12 1. @760 whertst 2. @762 chnsadsp 1. @763 stmtru 1. ; /*------------------------------------------------ The PROC FORMAT statement will store the formats in a sas data set called fsama98 To use the stored formats in a subsequent program, use code like the following: proc format cntlin=library.fsama98; PROC freq; tables pesex ; format pesex P135L.; For more information, consult PROC FORMAT in the SAS Procedures Guide ----------------------------------------------- */ PROC FORMAT cntlout=library.fsama98; ; VALUE rectype (default=32) 30 = "Sample Adult" ; VALUE srvy_yr (default=32) 1998 = "1998" ; VALUE intv_qrt (default=32) 1 = "Quarter 1" 2 = "Quarter 2" 3 = "Quarter 3" 4 = "Quarter 4" ; VALUE sex (default=32) 1 = "Male" 2 = "Female" ; VALUE age_p (default=32) 85 = "85+ years" ; VALUE origin (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hispan_p (default=32) 00 = "Multiple Hispanic" 01 = "Puerto Rican" 03 = "Mexican-Mexicano" 04 = "Mexican-American (includes Chicano)" 05 = "Cuban/Cuban-American" 06 = "Other Latin American" 07 = "Other Spanish" 08 = "Hispanic/Spanish; non-specific type" 09 = "Hispanic/Spanish; type refused" 10 = "Hispanic/Spanish; type not ascertained" 11 = "Hispanic/Spanish; type don't know" 12 = "Not Hispanic/Spanish origin" ; VALUE mrace_p (default=32) 01 = "White" 02 = "Black/African American" 03 = "Indian (American) (includes Eskimo; Aleut)" 06 = "Chinese" 07 = "Filipino" 12 = "Asian Indian" 15 = "Other API*" 16 = "Other race" 17 = "Multiple race" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE racerec (default=32) 1 = "White" 2 = "Black" 3 = "Other" ; VALUE race (default=32) 1 = "White" 2 = "Black" 3 = "AIAN*" 4 = "API*" 5 = "Other" 6 = "Multiple race" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hispcode (default=32) 1 = "Hispanic" 2 = "Non-Hispanic White" 3 = "Non-Hispanic Black" 4 = "Non-Hispanic Other" ; VALUE educ (default=32) 00 = "Never attended/ kindergarten only" 12 = "12th grade; no diploma" 13 = "HIGH SCHOOL GRADUATE" 14 = "GED or equivalent" 15 = "Some college; no degree" 16 = "AA degree: technical or vocational" 17 = "AA degree: academic program" 18 = "Bachelor's degree (BA; AB; BS; BBA)" 19 = "Master's degree (MA; MS; MEng; MEd; MBA)" 20 = "Professional degree (MD; DDS; DVM; JD)" 21 = "Doctoral degree (PhD; EdD)" 96 = "Child under 5 years old" 97 = "Refused" 98 = "Not Ascertained" 99 = "Don't know" ; VALUE ab_bl20k (default=32) 01 = "$20;000 or more" 02 = "Less than $20;000" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE rat_cat (default=32) 01 = "Under .50" 02 = ".50 to .74" 03 = ".75 to .99" 04 = "1.00 to 1.24" 05 = "1.25 to 1.49" 06 = "1.50 to 1.74" 07 = "1.75 to 1.99" 08 = "2.00 to 2.49" 09 = "2.50 to 2.99" 10 = "3.00 to 3.49" 11 = "3.50 to 3.99" 12 = "4.00 to 4.49" 13 = "4.50 to 4.99" 14 = "5.00 and over" 96 = "Undefinable" 99 = "Unknown" ; VALUE r_maritl (default=32) 0 = "Under 14 years" 1 = "Married - spouse in household" 2 = "Married - spouse not in household" 3 = "Married - spouse in household unknown" 4 = "Widowed" 5 = "Divorced" 6 = "Separated" 7 = "Never married" 8 = "Living with partner" 9 = "Unknown marital status" ; VALUE region (default=32) 1 = "Northeast" 2 = "Midwest" 3 = "South" 4 = "West" ; VALUE msasizep (default=32) 1 = "5;000;000 or more" 2 = "2;500;000 - 4;999;999" 3 = "1;000;000 - 2;499;999" 4 = "500;000 - 999;999" 5 = "250;000 - 499;999" 6 = "Under 250;000" 7 = "Non-MSA" ; VALUE dummy_ap (default=32) 1 = "Dummy record" 0 = "Not a dummy record" ; VALUE hypev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hypdifv (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE chdev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE angev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE miev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hrtev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE strev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ephev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aasmev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aasmyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aasmeryr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ulcev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ulcyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE canev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind1i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind2i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind3j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cnkind3a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE canage1l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage3l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage4l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage5l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage6l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage7l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage8l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage9l (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1j (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1a (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1b (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1c (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1d (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1e (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1f (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1g (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1h (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage1i (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2j (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2a (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2b (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2c (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2d (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2e (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2f (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2g (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2h (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage2i (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE canage3j (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE dibev (default=32) 1 = "Yes" 2 = "No" 3 = "Borderline" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dibage (default=32) 85 = "85+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE insln (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE dibpill (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahayfyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sinyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cbrchyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE kidwkyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE livyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntmo (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntij (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntijln (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE jntijlt (default=32) 1 = "Week(s)" 2 = "Month(s)" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntijlm (default=32) 00 = "Less than 1 month" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE jntyr1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr10l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr11l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr12l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr13l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr14l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr15l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr16l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE jntyr17l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE paineck (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE painlb (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE painleg (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE painface (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE amigr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE acold2w (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aintil2w (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pregnow (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hearaid (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahearst (default=32) 1 = "Good" 2 = "Little trouble" 3 = "Lot of trouble" 4 = "Deaf" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE avision (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ablind (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE uppert (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lowert (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sad (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE nervous (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE restless (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hopeless (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE effort (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE worthls (default=32) 1 = "ALL of the time" 2 = "MOST of the time" 3 = "SOME of the time" 4 = "A LITTLE of the time" 5 = "NONE of the time" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE mhamtmo (default=32) 1 = "A lot" 2 = "Some" 3 = "A little" 4 = "Not at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wrklyr2l (default=32) 0 = "Had job last week" 1 = "No job last week; had job past 12 m" 2 = "No job last week; no job past 12 m" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wkdayr (default=32) 000 = "None" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE beddayr (default=32) 000 = "None" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE ahstatyr (default=32) 1 = "Better" 2 = "Worse" 3 = "About the same" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE speceq (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flwalk (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flclimb (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flstand (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flsit (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flstoop (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flreach (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flgrasp (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flcarry (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flpush (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flshop (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flsocl (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE flrelax (default=32) 0 = "Not at all difficult" 1 = "Only a little difficult" 2 = "Somewhat difficult" 3 = "Very difficult" 4 = "Can't do at all" 6 = "Do not do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE fla1ar (default=32) 1 = "Limited in any way" 2 = "Not limited in any way" 3 = "Unknown if limited" ; VALUE aflhca1l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca4l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln4l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt4l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly4l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr4l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca5l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln5l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt5l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly5l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr5l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca6l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln6l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt6l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly6l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr6l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca7l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln7l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt7l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly7l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr7l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca8l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln8l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt8l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly8l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr8l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca9l (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln9l (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt9l (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly9l (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr9l (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1b (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1b (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alhclt1c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1c (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1d (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1e (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1e (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1e (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1e (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1f (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1f (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1f (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1f (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1g (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1g (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1g (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1g (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1h (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1h (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1h (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1h (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca1i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln1i (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt1i (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly1i (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr1i (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2b (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2b (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2c (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2d (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2e (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2e (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2e (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2e (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2f (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2f (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2f (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2f (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2g (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2g (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2g (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2g (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2h (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2h (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2h (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2h (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca2i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln2i (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt2i (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly2i (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr2i (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3b (default=32) 95 = "95+" 96 = "Since birth **" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3b (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth *" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3b (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3b (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3c (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3c (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3c (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3c (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca3d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln3d (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt3d (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly3d (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr3d (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca9j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln9j (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt9j (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly9j (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr9j (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE aflhca9a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 6 = "No condition at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcln9a (default=32) 95 = "95+" 96 = "Since birth" 97 = "Refused *" 98 = "Not ascertained" 99 = "Don't know *" ; VALUE alhclt9a (default=32) 1 = "Day(s)" 2 = "Week(s)" 3 = "Month(s)" 4 = "Year(s)" 6 = "Since birth" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alhcly9a (default=32) 00 = "Less than 1 year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alantr9a (default=32) 01 = "Less than 3 months" 02 = "3 - 5 months" 03 = "6 - 12 months" 04 = "More than 1 year" 10 = "Unknown number of days" 11 = "Unknown number of weeks" 12 = "Unknown number of months" 13 = "Unknown number of years" 99 = "Unknown time with cond/impairment" ; VALUE alcndr1l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr4l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr5l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr6l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr7l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr8l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr9l (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1e (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1f (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1g (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1h (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr1i (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2e (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2f (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2g (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2h (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr2i (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3b (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3c (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr3d (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr9j (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndr9a (default=32) 1 = "Chronic" 2 = "Not chronic" 9 = "Unknown if chronic" ; VALUE alcndrt (default=32) 1 = "At least one chronic cond causes functl lim" 2 = "No chronic condition causes functl lim" 9 = "Unknown if any chronic cond causes functl lim" ; VALUE alchronr (default=32) 0 = "Not limited in any way (incl unk if limited)" 1 = "Limited; caused by at least one chronic cond" 2 = "Limited; not caused by chronic cond" 3 = "Limited; unk if cond causing LA is chronic" ; VALUE smkev (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't Know" ; VALUE smkreg (default=32) 85 = "85 years or older" 96 = "Never smoked regularly" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE smknow (default=32) 1 = "Every day" 2 = "Some days" 3 = "Not at all" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE smkqtno (default=32) 95 = "95+" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE smkqttp (default=32) 1 = "Days" 2 = "Weeks" 3 = "Months" 4 = "Years" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE smkqty (default=32) 00 = "Less than 1 year" 70 = "70+ years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE smkqtd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE cigsda1l (default=32) 95 = "95+ cigarettes" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE cigdamo (default=32) 00 = "None" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE cigsda2l (default=32) 95 = "95+ cigarettes" 97 = "Refused" 98 = "Not Ascertained" 99 = "Don't know" ; VALUE cigsday (default=32) 95 = "95+ cigarettes" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't Know" ; VALUE smkstata (default=32) 1 = "Current" 2 = "Former" 3 = "Never" 4 = "Smoker; current status unknown" 9 = "Unknown if ever smoked" ; VALUE smkstatb (default=32) 1 = "Current every day smoker" 2 = "Current some day smoker" 3 = "Former smoker" 4 = "Never smoker" 5 = "Smoker; current status unknown" 9 = "Unknown if ever smoked" ; VALUE smkstatc (default=32) 1 = "Current every day smoker" 2 = "Current some day smoker (1+ days past mo)" 3 = "Current some day smoker (0 days past mo)" 4 = "Current some day smoker (unknown days past mo)" 5 = "Former smoker" 6 = "Never smoker" 7 = "Smoker; current status unknown" 9 = "Unknown if ever smoked" ; VALUE cigqtyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE vigno (default=32) 000 = "Never" 996 = "Unable to do this type activity" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE vigtp (default=32) 0 = "Never" 1 = "Day" 2 = "Week" 3 = "Month" 4 = "Year" 6 = "Unable to do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE vigfreqw (default=32) 00 = "Less than once per week" 95 = "Never" 96 = "Unable to do vig activity" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE viglngno (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE viglngtp (default=32) 1 = "Minutes" 2 = "Hours" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE vigmin (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE viglongd (default=32) 1 = "Less than 20 minutes" 2 = "20 minutes or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE modno (default=32) 000 = "Never" 996 = "Unable to do this type activity" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE modtp (default=32) 0 = "Never" 1 = "Day" 2 = "Week" 3 = "Month" 4 = "Year" 6 = "Unable to do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE modfreqw (default=32) 00 = "Less than once per week" 95 = "Never" 96 = "Unable to do moderate activity" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE modlngno (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE modlngtp (default=32) 1 = "Minutes" 2 = "Hours" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE modmin (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE modlongd (default=32) 1 = "Less than 20 minutes" 2 = "20 minutes or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE strngno (default=32) 000 = "Never" 996 = "Unable to do this type activity" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE strngtp (default=32) 0 = "Never" 1 = "Day" 2 = "Week" 3 = "Month" 4 = "Year" 6 = "Unable to do this activity" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE strfreqw (default=32) 00 = "Less than once per week" 95 = "Never" 96 = "Unable to do strength activity" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alc1yr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alclife (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alc12mno (default=32) 000 = "Never" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE alc12mtp (default=32) 0 = "Never/None" 1 = "Week" 2 = "Month" 3 = "Year" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alc12mmo (default=32) 00 = "Less than once a month" 95 = "Did not drink in past year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alc12mwk (default=32) 00 = "Less than one day per week" 95 = "Did not drink in past year" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alc12myr (default=32) 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE alcamt (default=32) 95 = "95+ drinks" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE alc5upno (default=32) 000 = "Never/None" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE alc5uptp (default=32) 0 = "Never/None" 1 = "Week" 2 = "Month" 3 = "Year" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE alc5upyr (default=32) 000 = "Never/None" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE alcstata (default=32) 1 = "Lifetime abstainer [<12 drinks in lifetime]" 2 = "Former drinker [No drinks in past year]" 3 = "Current drinker [1+ drinks in past year]" 9 = "Drinking status unknown" ; VALUE aheight (default=32) 96 = "Not available" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE aweightp (default=32) 996 = "Not available" 997 = "Refused" 998 = "Not ascertained" 999 = "Don't know" ; VALUE desirewt (default=32) 1 = "10% or more below desirable weight" 2 = "5-9% below desirable weight" 3 = "4.9% (+/-) of desirable body weight" 4 = "5-9.9% above desirable body weight" 5 = "10-19.9% above desirable body weight" 6 = "20-29.9 % above desirable body weight" 7 = "30% + above desirable body weight" 9 = "Unknown" ; VALUE bmi (default=32) 9995 = "99.95+" 9999 = "Unknown" ; VALUE ausualpl (default=32) 1 = "Yes" 2 = "There is NO place" 3 = "There is MORE THAN ONE place" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aplkind (default=32) 1 = "Clinic or health center" 2 = "Doctor's office or HMO" 3 = "Hospital emergency room" 4 = "Hospital outpatient department" 5 = "Some other place" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcplrou (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcplknd (default=32) 0 = "Doesn't get preventive care anywhere" 1 = "Clinic or health center" 2 = "Doctor's office or HMO" 3 = "Hospital emergency room" 4 = "Hospital outpatient department" 5 = "Some other place" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE sourcela (default=32) 01 = "Same sorc sk care & rout care" 02 = "Sorc sk care; no sorc rout care" 03 = "Sorc sk & rout care; no/unk same sorc" 04 = "Sorc sk care; unk sorc rout care" 05 = "GE2 sorc sk care; 1 is sorc rout care" 06 = "GE2 sorc sk care; no sorc rout care" 07 = "GE2 sorc sk & rout care; no/unk if same" 08 = "GE2 sorc sk care; unk sorc rout care" 09 = "No sorc sk care or rout care" 10 = "No sorc sk care; has sorc rout care" 11 = "No sorc sk care; unk sorc rout care" 12 = "Unk sorc sk care; no sorc rout care" 13 = "Unk sorc sk care; has sorc rout care" 14 = "Unk sorc sk care or sorc rout care" 99 = "Unknown other" ; VALUE ahcchgyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcchghi (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 9 = "Don't know" ; VALUE ahcdlyra (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcdlyrb (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcdlyrc (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcdlyrd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcdlyre (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcafyra (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcafyrb (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcafyrc (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE adenlong (default=32) 1 = "6 Months or less" 2 = "More than 6 mos; but not more than 1 yr ago" 3 = "More than 1 yr; but not more than 3 yrs ago" 4 = "More than 3 years" 5 = "Never" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr1l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr2l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr3l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr4l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr5l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr6l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr7l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr8l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr9l (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcsyr1j (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahernoyr (default=32) 0 = "None" 1 = "1" 2 = "2-3" 3 = "4-9" 4 = "10-12" 5 = "13 or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahchyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahchmoyr (default=32) 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE ahchnoyr (default=32) 1 = "1" 2 = "2-3" 3 = "4-9" 4 = "10-12" 5 = "13 or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE ahcnoyr (default=32) 0 = "None" 1 = "1" 2 = "2-3" 3 = "4-9" 4 = "10-12" 5 = "13 or more" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE asrgyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE asrgnoyr (default=32) 95 = "95+ Times" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE amdlong (default=32) 1 = "6 months or less" 2 = "More than 6 mos; but not more than 1 yr ago" 3 = "More than 1 yr; but not more than 3 yrs ago" 4 = "More than 3 years" 5 = "Never" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE shtfluyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE shtpnuyr (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wrkcat (default=32) 1 = "Employee of a PRIVATE company for wages" 2 = "A FEDERAL government employee" 3 = "A STATE government employee" 4 = "A LOCAL government employee" 5 = "Self-emp in OWN business/prof practice/farm" 6 = "Working WITHOUT PAY in fam business/farm" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE locallno (default=32) 01 = "1-9 employees" 02 = "10-24 employees" 03 = "25-49 employees" 04 = "50-99 employees" 05 = "100-249 employees" 06 = "250-499 employees" 07 = "500-999 employees" 08 = "1000 employees or more" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE locprtno (default=32) 01 = "1-9 employees" 02 = "10-24 employees" 03 = "25-49 employees" 04 = "50-99 employees" 05 = "100-249 employees" 06 = "250-499 employees" 07 = "500-999 employees" 08 = "1000 employees or more" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE yrswrk_p (default=32) 00 = "Less than 1 year" 35 = "35 or more years" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE wrklongd (default=32) 1 = "One year or less" 2 = "More than one year" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE hourpd (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE pdsick (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE onejob (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE wrkcatot (default=32) 1 = "Employee only" 2 = "Self-employed only" 3 = "Both" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE businc (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE bldgv (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE bldg12m (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE aidstst (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu0i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whytsu1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE tst12m (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot0i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE reatot1c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE lastst (default=32) 01 = "AIDS clinic/counseling/testing site" 02 = "Community health clinic" 03 = "Clinic run by employer" 04 = "STD clinic" 05 = "Family planning" 06 = "Prenatal clinic" 07 = "Other clinic" 08 = "Doctor/HMO" 09 = "Hospital/emergency room/outpatient clinic" 10 = "Military induction/separation/military site" 11 = "Immigration site" 12 = "At home/home visits by nurse/health worker" 13 = "At home - self testing kit" 14 = "Other location - specify" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE altst (default=32) 1 = "Yes" 2 = "No" 3 = "Only notified if there was a problem" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE talkhp (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE rsgvn (default=32) 1 = "In person" 2 = "By telephone" 3 = "By mail" 4 = "In some other way" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE extst12m (default=32) 1 = "Yes" 2 = "No" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0c (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0d (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0e (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0f (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0g (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0h (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u0i (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u1j (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u1a (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE why12u1b (default=32) 1 = "Mentioned" 2 = "Not mentioned" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE whertst (default=32) 01 = "AIDS clinic/counseling/testing site" 02 = "Community health clinic" 03 = "Clinic run by employer" 04 = "STD clinic" 05 = "Family planning" 06 = "Prenatal clinic" 07 = "Other clinic" 08 = "Doctor/HMO" 09 = "Hospital/emergency room/outpatient clinic" 10 = "Military induction/separation/military site" 11 = "Red cross/blood bank/blood drive" 12 = "At home/home visit by nurse/hlth practitioner" 13 = "At home - self testing kit" 14 = "Other location - specify" 97 = "Refused" 98 = "Not ascertained" 99 = "Don't know" ; VALUE chnsadsp (default=32) 1 = "High/Already have AIDS/AIDS virus" 2 = "Medium" 3 = "Low" 4 = "None" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; VALUE stmtru (default=32) 1 = "Yes to at least one statement" 2 = "No to all statements" 7 = "Refused" 8 = "Not ascertained" 9 = "Don't know" ; proc print data=library.nhis1998_samadult (obs=6); FORMAT rectype rectype. srvy_yr srvy_yr. intv_qrt intv_qrt. sex sex. age_p age_p. origin origin. hispan_p hispan_p. mrace_p mrace_p. racerec racerec. race race. hispcode hispcode. educ educ. ab_bl20k ab_bl20k. rat_cat rat_cat. r_maritl r_maritl. region region. msasizep msasizep. dummy_ap dummy_ap. hypev hypev. hypdifv hypdifv. chdev chdev. angev angev. miev miev. hrtev hrtev. strev strev. ephev ephev. aasmev aasmev. aasmyr aasmyr. aasmeryr aasmeryr. ulcev ulcev. ulcyr ulcyr. canev canev. cnkind1 cnkind1l. cnkind2 cnkind2l. cnkind3 cnkind3l. cnkind4 cnkind4l. cnkind5 cnkind5l. cnkind6 cnkind6l. cnkind7 cnkind7l. cnkind8 cnkind8l. cnkind9 cnkind9l. cnkind10 cnkind1j. cnkind11 cnkind1a. cnkind12 cnkind1b. cnkind13 cnkind1c. cnkind14 cnkind1d. cnkind15 cnkind1e. cnkind16 cnkind1f. cnkind17 cnkind1g. cnkind18 cnkind1h. cnkind19 cnkind1i. cnkind20 cnkind2j. cnkind21 cnkind2a. cnkind22 cnkind2b. cnkind23 cnkind2c. cnkind24 cnkind2d. cnkind25 cnkind2e. cnkind26 cnkind2f. cnkind27 cnkind2g. cnkind28 cnkind2h. cnkind29 cnkind2i. cnkind30 cnkind3j. cnkind31 cnkind3a. canage1 canage1l. canage2 canage2l. canage3 canage3l. canage4 canage4l. canage5 canage5l. canage6 canage6l. canage7 canage7l. canage8 canage8l. canage9 canage9l. canage10 canage1j. canage11 canage1a. canage12 canage1b. canage13 canage1c. canage14 canage1d. canage15 canage1e. canage16 canage1f. canage17 canage1g. canage18 canage1h. canage19 canage1i. canage20 canage2j. canage21 canage2a. canage22 canage2b. canage23 canage2c. canage24 canage2d. canage25 canage2e. canage26 canage2f. canage27 canage2g. canage28 canage2h. canage29 canage2i. canage30 canage3j. dibev dibev. dibage dibage. insln insln. dibpill dibpill. ahayfyr ahayfyr. sinyr sinyr. cbrchyr cbrchyr. kidwkyr kidwkyr. livyr livyr. jntyr jntyr. jntmo jntmo. jntij jntij. jntijln jntijln. jntijlt jntijlt. jntijlm jntijlm. jntyr1 jntyr1l. jntyr2 jntyr2l. jntyr3 jntyr3l. jntyr4 jntyr4l. jntyr5 jntyr5l. jntyr6 jntyr6l. jntyr7 jntyr7l. jntyr8 jntyr8l. jntyr9 jntyr9l. jntyr10 jntyr10l. jntyr11 jntyr11l. jntyr12 jntyr12l. jntyr13 jntyr13l. jntyr14 jntyr14l. jntyr15 jntyr15l. jntyr16 jntyr16l. jntyr17 jntyr17l. paineck paineck. painlb painlb. painleg painleg. painface painface. amigr amigr. acold2w acold2w. aintil2w aintil2w. pregnow pregnow. hearaid hearaid. ahearst ahearst. avision avision. ablind ablind. uppert uppert. lowert lowert. sad sad. nervous nervous. restless restless. hopeless hopeless. effort effort. worthls worthls. mhamtmo mhamtmo. wrklyr2 wrklyr2l. wkdayr wkdayr. beddayr beddayr. ahstatyr ahstatyr. speceq speceq. flwalk flwalk. flclimb flclimb. flstand flstand. flsit flsit. flstoop flstoop. flreach flreach. flgrasp flgrasp. flcarry flcarry. flpush flpush. flshop flshop. flsocl flsocl. flrelax flrelax. fla1ar fla1ar. aflhca1 aflhca1l. alhcln1 alhcln1l. alhclt1 alhclt1l. alhcly1 alhcly1l. alantr1 alantr1l. aflhca2 aflhca2l. alhcln2 alhcln2l. alhclt2 alhclt2l. alhcly2 alhcly2l. alantr2 alantr2l. aflhca3 aflhca3l. alhcln3 alhcln3l. alhclt3 alhclt3l. alhcly3 alhcly3l. alantr3 alantr3l. aflhca4 aflhca4l. alhcln4 alhcln4l. alhclt4 alhclt4l. alhcly4 alhcly4l. alantr4 alantr4l. aflhca5 aflhca5l. alhcln5 alhcln5l. alhclt5 alhclt5l. alhcly5 alhcly5l. alantr5 alantr5l. aflhca6 aflhca6l. alhcln6 alhcln6l. alhclt6 alhclt6l. alhcly6 alhcly6l. alantr6 alantr6l. aflhca7 aflhca7l. alhcln7 alhcln7l. alhclt7 alhclt7l. alhcly7 alhcly7l. alantr7 alantr7l. aflhca8 aflhca8l. alhcln8 alhcln8l. alhclt8 alhclt8l. alhcly8 alhcly8l. alantr8 alantr8l. aflhca9 aflhca9l. alhcln9 alhcln9l. alhclt9 alhclt9l. alhcly9 alhcly9l. alantr9 alantr9l. aflhca10 aflhca1j. alhcln10 alhcln1j. alhclt10 alhclt1j. alhcly10 alhcly1j. alantr10 alantr1j. aflhca11 aflhca1a. alhcln11 alhcln1a. alhclt11 alhclt1a. alhcly11 alhcly1a. alantr11 alantr1a. aflhca12 aflhca1b. alhcln12 alhcln1b. alhclt12 alhclt1b. alhcly12 alhcly1b. alantr12 alantr1b. aflhca13 aflhca1c. alhcln13 alhcln1c. alhclt13 alhclt1c. alhcly13 alhcly1c. alantr13 alantr1c. aflhca14 aflhca1d. alhcln14 alhcln1d. alhclt14 alhclt1d. alhcly14 alhcly1d. alantr14 alantr1d. aflhca15 aflhca1e. alhcln15 alhcln1e. alhclt15 alhclt1e. alhcly15 alhcly1e. alantr15 alantr1e. aflhca16 aflhca1f. alhcln16 alhcln1f. alhclt16 alhclt1f. alhcly16 alhcly1f. alantr16 alantr1f. aflhca17 aflhca1g. alhcln17 alhcln1g. alhclt17 alhclt1g. alhcly17 alhcly1g. alantr17 alantr1g. aflhca18 aflhca1h. alhcln18 alhcln1h. alhclt18 alhclt1h. alhcly18 alhcly1h. alantr18 alantr1h. aflhca19 aflhca1i. alhcln19 alhcln1i. alhclt19 alhclt1i. alhcly19 alhcly1i. alantr19 alantr1i. aflhca20 aflhca2j. alhcln20 alhcln2j. alhclt20 alhclt2j. alhcly20 alhcly2j. alantr20 alantr2j. aflhca21 aflhca2a. alhcln21 alhcln2a. alhclt21 alhclt2a. alhcly21 alhcly2a. alantr21 alantr2a. aflhca22 aflhca2b. alhcln22 alhcln2b. alhclt22 alhclt2b. alhcly22 alhcly2b. alantr22 alantr2b. aflhca23 aflhca2c. alhcln23 alhcln2c. alhclt23 alhclt2c. alhcly23 alhcly2c. alantr23 alantr2c. aflhca24 aflhca2d. alhcln24 alhcln2d. alhclt24 alhclt2d. alhcly24 alhcly2d. alantr24 alantr2d. aflhca25 aflhca2e. alhcln25 alhcln2e. alhclt25 alhclt2e. alhcly25 alhcly2e. alantr25 alantr2e. aflhca26 aflhca2f. alhcln26 alhcln2f. alhclt26 alhclt2f. alhcly26 alhcly2f. alantr26 alantr2f. aflhca27 aflhca2g. alhcln27 alhcln2g. alhclt27 alhclt2g. alhcly27 alhcly2g. alantr27 alantr2g. aflhca28 aflhca2h. alhcln28 alhcln2h. alhclt28 alhclt2h. alhcly28 alhcly2h. alantr28 alantr2h. aflhca29 aflhca2i. alhcln29 alhcln2i. alhclt29 alhclt2i. alhcly29 alhcly2i. alantr29 alantr2i. aflhca30 aflhca3j. alhcln30 alhcln3j. alhclt30 alhclt3j. alhcly30 alhcly3j. alantr30 alantr3j. aflhca31 aflhca3a. alhcln31 alhcln3a. alhclt31 alhclt3a. alhcly31 alhcly3a. alantr31 alantr3a. aflhca32 aflhca3b. alhcln32 alhcln3b. alhclt32 alhclt3b. alhcly32 alhcly3b. alantr32 alantr3b. aflhca33 aflhca3c. alhcln33 alhcln3c. alhclt33 alhclt3c. alhcly33 alhcly3c. alantr33 alantr3c. aflhca34 aflhca3d. alhcln34 alhcln3d. alhclt34 alhclt3d. alhcly34 alhcly3d. alantr34 alantr3d. aflhca90 aflhca9j. alhcln90 alhcln9j. alhclt90 alhclt9j. alhcly90 alhcly9j. alantr90 alantr9j. aflhca91 aflhca9a. alhcln91 alhcln9a. alhclt91 alhclt9a. alhcly91 alhcly9a. alantr91 alantr9a. alcndr1 alcndr1l. alcndr2 alcndr2l. alcndr3 alcndr3l. alcndr4 alcndr4l. alcndr5 alcndr5l. alcndr6 alcndr6l. alcndr7 alcndr7l. alcndr8 alcndr8l. alcndr9 alcndr9l. alcndr10 alcndr1j. alcndr11 alcndr1a. alcndr12 alcndr1b. alcndr13 alcndr1c. alcndr14 alcndr1d. alcndr15 alcndr1e. alcndr16 alcndr1f. alcndr17 alcndr1g. alcndr18 alcndr1h. alcndr19 alcndr1i. alcndr20 alcndr2j. alcndr21 alcndr2a. alcndr22 alcndr2b. alcndr23 alcndr2c. alcndr24 alcndr2d. alcndr25 alcndr2e. alcndr26 alcndr2f. alcndr27 alcndr2g. alcndr28 alcndr2h. alcndr29 alcndr2i. alcndr30 alcndr3j. alcndr31 alcndr3a. alcndr32 alcndr3b. alcndr33 alcndr3c. alcndr34 alcndr3d. alcndr90 alcndr9j. alcndr91 alcndr9a. alcndrt alcndrt. alchronr alchronr. smkev smkev. smkreg smkreg. smknow smknow. smkqtno smkqtno. smkqttp smkqttp. smkqty smkqty. smkqtd smkqtd. cigsda1 cigsda1l. cigdamo cigdamo. cigsda2 cigsda2l. cigsday cigsday. smkstat1 smkstata. smkstat2 smkstatb. smkstat3 smkstatc. cigqtyr cigqtyr. vigno vigno. vigtp vigtp. vigfreqw vigfreqw. viglngno viglngno. viglngtp viglngtp. vigmin vigmin. viglongd viglongd. modno modno. modtp modtp. modfreqw modfreqw. modlngno modlngno. modlngtp modlngtp. modmin modmin. modlongd modlongd. strngno strngno. strngtp strngtp. strfreqw strfreqw. alc1yr alc1yr. alclife alclife. alc12mno alc12mno. alc12mtp alc12mtp. alc12mmo alc12mmo. alc12mwk alc12mwk. alc12myr alc12myr. alcamt alcamt. alc5upno alc5upno. alc5uptp alc5uptp. alc5upyr alc5upyr. alcstat1 alcstata. aheight aheight. aweightp aweightp. desirewt desirewt. bmi bmi. ausualpl ausualpl. aplkind aplkind. ahcplrou ahcplrou. ahcplknd ahcplknd. sourcela sourcela. ahcchgyr ahcchgyr. ahcchghi ahcchghi. ahcdlyr1 ahcdlyra. ahcdlyr2 ahcdlyrb. ahcdlyr3 ahcdlyrc. ahcdlyr4 ahcdlyrd. ahcdlyr5 ahcdlyre. ahcafyr1 ahcafyra. ahcafyr2 ahcafyrb. ahcafyr3 ahcafyrc. adenlong adenlong. ahcsyr1 ahcsyr1l. ahcsyr2 ahcsyr2l. ahcsyr3 ahcsyr3l. ahcsyr4 ahcsyr4l. ahcsyr5 ahcsyr5l. ahcsyr6 ahcsyr6l. ahcsyr7 ahcsyr7l. ahcsyr8 ahcsyr8l. ahcsyr9 ahcsyr9l. ahcsyr10 ahcsyr1j. ahernoyr ahernoyr. ahchyr ahchyr. ahchmoyr ahchmoyr. ahchnoyr ahchnoyr. ahcnoyr ahcnoyr. asrgyr asrgyr. asrgnoyr asrgnoyr. amdlong amdlong. shtfluyr shtfluyr. shtpnuyr shtpnuyr. wrkcat wrkcat. locallno locallno. locprtno locprtno. yrswrk_p yrswrk_p. wrklongd wrklongd. hourpd hourpd. pdsick pdsick. onejob onejob. wrkcatot wrkcatot. businc businc. bldgv bldgv. bldg12m bldg12m. aidstst aidstst. whytsu01 whytsu0a. whytsu02 whytsu0b. whytsu03 whytsu0c. whytsu04 whytsu0d. whytsu05 whytsu0e. whytsu06 whytsu0f. whytsu07 whytsu0g. whytsu08 whytsu0h. whytsu09 whytsu0i. whytsu10 whytsu1j. tst12m tst12m. reatot01 reatot0a. reatot02 reatot0b. reatot03 reatot0c. reatot04 reatot0d. reatot05 reatot0e. reatot06 reatot0f. reatot07 reatot0g. reatot08 reatot0h. reatot09 reatot0i. reatot10 reatot1j. reatot11 reatot1a. reatot12 reatot1b. reatot13 reatot1c. lastst lastst. altst altst. talkhp talkhp. rsgvn rsgvn. extst12m extst12m. why12u01 why12u0a. why12u02 why12u0b. why12u03 why12u0c. why12u04 why12u0d. why12u05 why12u0e. why12u06 why12u0f. why12u07 why12u0g. why12u08 why12u0h. why12u09 why12u0i. why12u10 why12u1j. why12u11 why12u1a. why12u12 why12u1b. whertst whertst. chnsadsp chnsadsp. stmtru stmtru. ; proc contents data=library.nhis1998_samadult; /* 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. */