DM 'CLE LOG; CLE OUT'; ************************************************************************** October 21, 2005 THIS IS AN EXAMPLE OF A SAS PROGRAM THAT CREATES A SAS FILE FROM THE NHIS 1995 DISABILITY DIS1COND.DAT ASCII FILE. NOTE: THE FORMAT DEFINITIONS GIVEN BELOW WILL RESULT IN PROCEDURE OUTPUT SHOWING VALUES THAT HAVE BEEN GROUPED AS THEY ARE SHOWN IN THE FILE LAYOUT DOCUMENTATION. THIS IS STORED IN DIS1COND.SAS *************************************************************************; * USER NOTE: PLACE NEXT TWO STATEMENTS IN SUBSEQUENT PROGRAMS; LIBNAME NHIS 'C:\NHIS1995\'; LIBNAME LIBRARY 'C:\NHIS1995\'; FILENAME ASCIIDAT 'C:\NHIS1995\DIS1COND.DAT'; * DEFINE VARIABLE VALUES FOR REPORT; PROC FORMAT LIBRARY=LIBRARY; VALUE DCN001X 65 = "Condition File" ; VALUE DCN002X 95 = "1995" ; VALUE $DCN003X ; VALUE DCN004X ; VALUE DCN005X 01 = "Week 01" 02 = "Week 02" 03 = "Week 03" 04 = "Week 04" 05 = "Week 05" 06 = "Week 06" 07 = "Week 07" 08 = "Week 08" 09 = "Week 09" 10 = "Week 10" 11 = "Week 11" 12 = "Week 12" 13 = "Week 13" ; VALUE DCN006X 0 = "Interview not late" 1 = "One week late" 2 = "Two weeks late" 3 = "Unknown" ; VALUE DCN007X 00 = "Housing unit; kind unknown" 01 = "House, apartment, flat" 02 = "HU in nontransient hotel, etc" 03 = "HU-permanent in transient hotel, etc" 04 = "HU in rooming house" 05 = "Mobile home or trailer with no permanent room added" 06 = "Mobile home or trailer with one or more permanent rooms added" 07 = "HU not specified above" 08 = "Quarters not HU in rooming or boarding house" 09 = "Unit not permanent in transient motel, etc" 10 = "Unoccupied site for mobile home, trailer, or tent" 11 = "Student quarters in college dormitory" 12 = "Other unit not specified above" 13 = "Other unit; kind unknown" ; VALUE DCN008X 1 = "Yes, phone number given" 2 = "Yes, no phone number given" 3 = "No" 4 = "Unknown" ; VALUE DCN009X 1 = "Male" 2 = "Female" ; VALUE DCN010X 00 = "Under 1 year" 01-98 = "Number of years" 99 = "99+ years of age" ; VALUE DCN011X 1 = "Under 5 years" 2 = "5-17 years" 3 = "18-24 years" 4 = "25-44 years" 5 = "45-64 years" 6 = "65-69 years" 7 = "70-74 years" 8 = "75 years and over" ; VALUE DCN012X 1 = "Under 6 years" 2 = "6-16 years" 3 = "17-24 years" 4 = "25-34 years" 5 = "35-44 years" 6 = "45-54 years" 7 = "55-64 years" 8 = "65-74 years" 9 = "75 years and over" ; VALUE DCN013X 00-35 = "Months" 36 = "Over 3 years" ; VALUE $DCN014X ; VALUE $DCN015X "01" = "January" "08" = "August" "02" = "February" "09" = "September" "03" = "March" "10" = "October" "04" = "April" "11" = "November" "05" = "May" "12" = "December" "06" = "June" "99" = "Unknown" "07" = "July" ; VALUE $DCN016X "1800"-"1899" = "1800-1899" "1900"-"1996" = "1900-1996" "9999" = "Unknown" ; VALUE DCN017X 0 = "Hispanic Origin Known" 1 = "Hispanic Origin Imputed from Reference Person" ; VALUE DCN018X 01 = "White" 02 = "Black/Africa American" 03 = "Indian (American)" 04 = "Eskimo" 05 = "Aleut" 06 = "Chinese" 07 = "Filipino" 08 = "Hawaiian" 09 = "Korean" 10 = "Vietnamese" 11 = "Japanese" 12 = "Asian Indian" 13 = "Samoan" 14 = "Guamanian" 15 = "Other API" 16 = "Other race" 17 = "Multiple race" 99 = "Unknown" ; VALUE DCN019X 1 = "White" 2 = "Black" 3 = "Other" ; VALUE DCN020X 1 = "White" 2 = "Non-white" ; VALUE DCN021X 1 = "Black" 2 = "Non-black" ; VALUE DCN022X 00 = "Multiple Hispanic" 01 = "Puerto Rican" 02 = "Cuban" 03 = "Mexican-Mexicano" 04 = "Mexican-American" 05 = "Chicano" 06 = "Other Latin American" 07 = "Other Spanish" 08 = "Spanish, DK type" 09 = "Unknown if Spanish origin" 10 = "Not Spanish origin" ; VALUE DCN023X 0 = "Under 14 years" 1 = "Married - spouse in household" 2 = "Married - spouse not in household" 3 = "Widowed" 4 = "Divorced" 5 = "Separated" 6 = "Never married" 7 = "Unknown" ; VALUE DCN024X 1 = "Non-veteran" 2 = "WW I" 3 = "WW II" 4 = "Korean War" 5 = "Vietnam veteran" 6 = "Post-Vietnam" 7 = "Other service" 8 = "Served in Armed Forces, unknown if war veteran" 9 = "Unknown if served in Armed Forces" . = "Under 18 years of age" ; VALUE DCN025X 0 = "Non-veteran" 1 = "All service in Guard/Reserve" 2 = "Some service in Guard/Reserve" 3 = "Unknown if all service in Guard/Reserve" 4 = "No active service in Guard/Reserve" 5 = "Unknown if ever active member in Guard/Reserve or served in Armed Forces" . = "Under 18 years of age" ; VALUE DCN026X 00 = "Never attended; kindergarten only" 01-12 = "Grades 1-12" 13 = "1 year" 14 = "2 years" 15 = "3 years" 16 = "4 years" 17 = "5 years" 18 = "6 years or more" 19 = "Unknown" . = "Under 5 years of age" ; VALUE DCN027X 0 = "None; kindergarten only" 1 = "1-8 years (elementary)" 2 = "9-11 years (high school)" 3 = "12 years (high school graduate)" 4 = "1-3 years (college)" 5 = "4 years (college graduate)" 6 = "5+ years (post-college)" 7 = "Unknown" . = "Under 5 years of age" ; VALUE DCN028X 00 = "Never attended; kindergarten only" 01-12 = "Grades 1-12" 13 = "1 year" 14 = "2 years" 15 = "3 years" 16 = "4 years" 17 = "5 years" 18 = "6 years or more" 19 = "Unknown" ; VALUE DCN029X 0 = "None; kindergarten only" 1 = "1-8 years (elementary)" 2 = "9-11 years (high school)" 3 = "12 years (high school graduate)" 4 = "1-3 years (college)" 5 = "4 years (college graduate)" 6 = "5+ years (post-college)" 7 = "Unknown" ; VALUE DCN030X 1 = "Less than $20,000" 2 = "$20,000 or more" 3 = "Unknown" ; VALUE DCN031X 00 = "Less than $1,000" 01 = "$1,000 - $ 1,999" 02 = " 2,000 - 2,999" 03 = " 3,000 - 3,999" 04 = " 4,000 - 4,999" 05 = " 5,000 - 5,999" 06 = " 6,000 - 6,999" 07 = " 7,000 - 7,999" 08 = " 8,000 - 8,999" 09 = " 9,000 - 9,999" 10 = "10,000 - 10,999" 11 = "11,000 - 11,999" 12 = "12,000 - 12,999" 13 = "13,000 - 13,999" 14 = "14,000 - 14,999" 15 = "15,000 - 15,999" 16 = "16,000 - 16,999" 17 = "17,000 - 17,999" 18 = "18,000 - 18,999" 19 = "19,000 - 19,999" 20 = "20,000 - 24,999" 21 = "25,000 - 29,999" 22 = "30,000 - 34,999" 23 = "35,000 - 39,999" 24 = "40,000 - 44,999" 25 = "45,000 - 49,999" 26 = "$50,000 and over" 27 = "Unknown" ; VALUE DCN032X 0 = "Under $5,000" 1 = "$ 5,000 - $ 6,999" 2 = " 7,000 - 9,999" 3 = " 10,000 - 14,999" 4 = " 15,000 - 19,999" 5 = " 20,000 - 24,999" 6 = " 25,000 - 34,999" 7 = " 35,000 - 49,999" 8 = "$50,000 or more" 9 = "Unknown" ; VALUE DCN033X 1 = "At or above poverty threshold" 2 = "Below poverty threshold" 3 = "Unknown" ; VALUE $DCN034X "&" = "Primary individual" "-" = "Secondary individual" "0" = "Primary family" "1"-"9" = "Secondary family" ; VALUE $DCN035X "&" = "Reference person, living alone" "0" = "Reference person, 2+ persons in household" "1" = "Spouse, other spouse NOT in Armed Forces and living at home" "2" = "Spouse, other spouse IN Armed Forces and living at home" "3" = "Child of reference person or spouse" "4" = "Grandchild of reference person or spouse" "5" = "Parent of reference person or spouse" "6" = "Other relative" "7" = "Child of ineligible reference person" "9" = "Unknown" ; VALUE DCN036X 1 = "Living alone" 2 = "Living only with non-relative" 3 = "Living with spouse" 4 = "Living with relative" ; VALUE DCN037X ; VALUE DCN038X 1-8 = "Number of members" 9 = "9+ members" ; VALUE DCN039X 1 = "Both parents, no other relative" 2 = "Mother only" 3 = "Father only" 4 = "Both parents and other 21+ year old adult relative" 5 = "Mother and other 21+ year old adult relative" 6 = "Father and other 21+ year old adult relative" 7 = "No parent, but one 21+ year old adult relative" 8 = "No parent, but two or more 21+ year old adult relatives" 9 = "Unknown" 0 = "Other" . = "Not applicable (25+ years old or ever married)" ; VALUE DCN040X 1 = "Working" 2 = "Keeping house" 3 = "Going to school" 4 = "Something else" 5 = "Unknown" . = "Not applicable (Under 18 years)" ; VALUE DCN041X 1 = "Excellent" 2 = "Very Good" 3 = "Good" 4 = "Fair" 5 = "Poor" 6 = "Unknown" ; VALUE DCN042X 1 = "Unable to perform major activity" 2 = "Limited in kind/amount major activity" 3 = "Limited in other activities" 4 = "Not limited (includes unknowns)" ; VALUE DCN043X 1 = "Unable to work" 2 = "Limited in kind/amount of work" 3 = "Limited in other activities" 4 = "Not limited (includes unknowns)" . = "Not applicable (under 18 years, 70+ years)" ; VALUE DCN044X 1 = "Unable to attend school" 2 = "Attends special school/classes" 3 = "Needs special school/classes" 4 = "Limited in school attendance" 5 = "Limited in other activities" 6 = "Not limited (includes unknowns)" . = "Not applicable (under 5 years or 18+ years)" ; VALUE DCN045X 1 = "Unable to perform personal care needs" 2 = "Limited in performing other routine needs" 3 = "Not limited in performing personal or routine needs" 4 = "Unknown" . = "Not applicable (under 5 years; 5-59 years not limited; 70+ years old)" ; VALUE DCN046X 1 = "Worked in past 2 weeks" 2 = "Did not work, has job; not on lay-off and not looking for work" 3 = "Did not work, has job; looking for work" 4 = "Did not work, has job; on lay-off" 5 = "Did not work, has job; on lay- off and looking for work" 6 = "Did not work, has job; unknown if looking or on lay-off" 7 = "Did not work, has no job; looking for work or on lay-off Not in Labor Force (18+ years): (8)" 8 = "Not in Labor Force (18+ years)" . = "Not applicable (Under 18 years old)" ; VALUE DCN047X 0 = "Not in labor force" 1 = "Private company" 2 = "Federal Government employee" 3 = "State Government employee" 4 = "Local Government employee" 5 = "Incorporated business" 6 = "Self-employed" 7 = "Without pay" 8 = "Never worked" 9 = "Unknown" . = "Under 18" ; VALUE DCN048X ; VALUE DCN049X ; VALUE DCN050X ; VALUE DCN051X ; VALUE DCN052X 1 = "Self-entirely" 2 = "Self-partly" 3 = "Proxy" 4 = "Unknown" ; VALUE DCN053X 1 = "Condition List 1, Skin and musculoskeletal" 2 = "Condition List 2, Impairments" 3 = "Condition List 3, Digestive" 4 = "Condition List 4, Miscellaneous" 5 = "Condition List 5, Circulatory" 6 = "Condition List 6, Respiratory" 7 = "Unknown" ; VALUE DCN054X 36-98 = "Number of inches" 99 = "Unknown" . = "Under 18 years of age" ; VALUE DCN055X 050-500 = "Number of pounds" 501 = "Unknown" . = "Under 18 years of age" ; VALUE DCN056X 00 = "None" 01-14 = "Days" ; VALUE DCN057X 00 = "None" 01-14 = "Days" ; VALUE DCN058X 00 = "None" 01-14 = "Days" ; VALUE DCN059X 00 = "None" 01-14 = "Days" ; VALUE DCN060X 00 = "None" 01-14 = "Days" ; VALUE DCN061X 000 = "None" 001-365 = "1-365 days" 366 = "Unknown" ; VALUE DCN062X 0 = "None" 1 = "1-7 days" 2 = "8-30 days" 3 = "31-180 days" 4 = "181-365 days" 5 = "Unknown" ; VALUE DCN063X 000 = "None" 001-996 = "Visits" 997 = "997+ visits" 998 = "Unknown" ; VALUE DCN064X 0 = "Never" 1 = "Less than 1 year" 2 = "1 to less than 2 years" 3 = "2 to less than 5 years" 4 = "5 years or more" 5 = "Unknown" ; VALUE DCN065X ; VALUE DCN066X ; VALUE DCN067X ; VALUE DCN068X ; VALUE DCN069X ; VALUE DCN070X ; VALUE DCN071X ; VALUE DCN072X ; VALUE DCN073X ; VALUE DCN074X ; VALUE DCN075X ; VALUE DCN076X 1 = "Less than 1 year" 2 = "1 yr., less than 5 years" 3 = "5 yrs., less than 10 yrs." 4 = "10 yrs., less than 15 yrs." 5 = "15 years or more" 9 = "Unknown" . = "Not applicable (Foreign born)" ; VALUE DCN077X 1 = "Less than 1 year" 2 = "1 yr., less than 5 years" 3 = "5 yrs., less than 10 yrs." 4 = "10 yrs., less than 15 yrs." 5 = "15 years or more" 9 = "Unknown" . = "Not applicable (U.S. born)" ; VALUE DCN078X 1 = "Quarter 1" 2 = "Quarter 2" 3 = "Quarter 3" 4 = "Quarter 4" ; VALUE DCN079X 1 = "Northeast" 2 = "Midwest" 3 = "South" 4 = "West" ; VALUE DCN080X 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 = "100,000 - 249,999" 7 = "Under 100,000" . = "Non-MSA" ; VALUE DCN081X 1 = "In MSA; in Central City" 2 = "In MSA; not in Central City" 3 = "Not in MSA" ; VALUE DCN082X ; VALUE DCN083X ; VALUE DCN084X ; VALUE DCN085X ; VALUE DCN086X ; VALUE DCN087X ; VALUE DCN088X ; VALUE DCN089X 1 = "Self representing" 2 = "Non self representing" ; VALUE DCN090X 1-4 = "Code used to identify nationally Representative subsamples" ; VALUE DCN091X 1 = "At least one perfect match" 2 = "Best match is an extra' Volunteered condition" 3 = "Best match is not perfect but good (may be only existing condition record)" 4 = "Not a good match for any source but at least one is possible" 5 = "Potential match for one mental health condition source but ICD code is out of expected range" 6 = "No disability match; causes limitation of activity" ; VALUE DCN092X 01-99 = "Serial number of condition" . = "Disability condition record" ; VALUE $DCN093X "0" = "Zero is the default code when no letter was assigned" "A"-"Z" = "Printed letter from top of condition page" " " = "Core condition record" ; VALUE $DCN094X ; VALUE DCN095X ; VALUE DCN096X . = "Not an acute condition" ; VALUE DCN097X . = "Not a chronic condition" ; VALUE DCN098X 1 = "Chronic" 2 = "Acute" ; VALUE DCN099X 1 = "During the past 2 weeks" 2 = "Over 2 weeks to 3 months" 3 = "Over 3 months to 12 months" 4 = "Over 1 year to 5-years" 5 = "Over 5 years" ; VALUE DCN100X 0 = "Interview week" 1 = "2-week reference period" 2 = "Over 2 weeks, less than 6 months" 3 = "6 months, less than 1 year" 4 = "1 year, less than 2 years" 5 = "2 years, less than 5 years" 6 = "5 years or more" 7 = "Doctor seen, DK when" 8 = "DK if doctor seen" 9 = "Doctor never seen" ; VALUE DCN101X 1 = "Yes (or unknown if Doctor ever seen)" 2 = "No" ; VALUE DCN102X 1 = "Still has condition" 2 = "Condition cured" 3 = "Condition under control" 4 = "Other" 9 = "Unknown status" . = "Not a chronic condition" ; VALUE DCN103X 0 = "Less than 1 month" 1 = "1-3 months" 2 = "Over 3 to 6 months" 3 = "Over 6 to 12 months" 4 = "1 year" 5 = "2-4 years" 6 = "5-9 years" 7 = "10 years or more" 9 = "Unknown" . = "Not applicable/not a chronic condition" ; VALUE DCN104X 1 = "Yes" 2 = "No" 9 = "Unknown" . = "Not a chronic condition" ; VALUE DCN105X 1 = "Limited, condition main cause of limitation" 2 = "Limited, condition secondary cause of limitation" 3 = "Limited, but not caused by this condition" 4 = "Not limited" . = "Disability condition record" ; VALUE DCN106X 1 = "Accident/injury" 2 = "Some indication of accident/injury" . = "NA; Not an accident/ injury" ; VALUE DCN107X 1 = "Yes, adverse reaction" 2 = "Yes, complication of medical care (Therapeutic misadventure)" 3 = "No, other injury" . = "Not an injury" ; VALUE DCN108X 1 = "At home (inside house)" 2 = "At home (adjacent premises)" 3 = "Street and highway and public sidewalks)" 4 = "Farm" 5 = "Industrial place" 6 = "School (includes premises)" 7 = "Place of recreation and sports, except school" 8 = "Other" 9 = "Unknown" . = "Not an injury" ; VALUE DCN109X 1 = "Yes" 2 = "No" 3 = "Not applicable; under 18 at time of accident" 4 = "Not applicable; in Armed Forces" 9 = "Unknown" . = "Not an injury" ; VALUE DCN110X 1 = "Yes" 2 = "No" 9 = "Unknown" . = "Not an injury" ; VALUE DCN111X 1 = "Yes, two or more" 2 = "No, only one vehicle involved" 9 = "Unknown" . = "Not an injury/ no or unknown if motor vehicle involved" ; VALUE DCN112X 1 = "Yes" 2 = "No" 9 = "Unknown" . = "Not an injury/no or unknown if motor vehicle involved" ; VALUE DCN113X 111-322 = "" 400 = "See Appendix D" 500 = "" 600 = "" . = "Not an injury" ; VALUE $DCN114X "E800 "-"E998 " = "ICD-9 External Causes of Injury" " " = "Not an injury" ; VALUE DCN115X 0 = "Home" 1 = "Farm" 2 = "Mine and quarry" 3 = "Industrial place and premises" 4 = "Place for recreation and sports" 5 = "Street and Highway" 6 = "Public building" 7 = "Residential institution" 8 = "Other specified places" 9 = "Unspecified place, DK, or refused place" . = "Not an injury" ; VALUE DCN116X 0 = "Person has LA but not caused by this condition" 1 = "Person has this disability; this condition is primary" . = "NA; Core condition record but person does not have LA Disability condition record" ; VALUE DCN117X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN118X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN119X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is one of two possible primary causes" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN120X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN121X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN122X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN123X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN124X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN125X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN126X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN127X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN128X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN129X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN130X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN131X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" 5 = "Person gave this as mental health condition but ICD code does not match mental health category" . = "NA; not a source of disability for this person" ; VALUE DCN132X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN133X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN134X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN135X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN136X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN137X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN138X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN139X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN140X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN141X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause extra condition)" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN142X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN143X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; is condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN144X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this edition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; VALUE DCN145X 0 = "Person has this disability but not caused by this condition" 1 = "Person has this disability; this condition is primary cause" 2 = "Person has this disability; this condition is secondary cause" 3 = "Person has this disability; this condition is the most likely cause" 4 = "Person has this disability; this condition is one of several possible causes" . = "NA; not a source of disability for this person" ; DATA NHIS.DIS1COND; * CREATE A SAS DATA SET STORED IN DIR 'C:\NHIS1995\'; INFILE ASCIIDAT MISSOVER TRUNCOVER LRECL=473; * DEFINE LENGTH OF NUMERIC VARIABLES; LENGTH RECTYPE 3 YEAR 3 PNUM 3 WEEKCODE 3 CN_21 3 CN_22 3 CN_24 3 CN_25 3 CN_27 3 CN_29 3 CN_30 3 CN_31 3 CN_40 3 CN_41 3 CN_43 3 CN_44 3 CN_45 3 CN_46 3 CN_48 3 CN_49 3 CN_50 3 CN_51 3 CN_53 3 CN_54 3 CN_56 3 CN_57 3 CN_58 3 CN_60 3 CN_61 3 CN_64 3 CN_65 3 CN_67 3 CN_68 3 CN_69 3 CN_70 3 CN_71 3 CN_72 3 CN_73 3 CN_74 3 CN_75 3 CN_76 3 CN_80 3 CN_82 3 CN_87 3 CN_89 3 CN_91 3 CN_92 3 CN_93 3 CN_95 3 CN_98 3 CN_100 3 CN_102 3 CN_104 3 CN_106 3 CN_108 3 CN_111 3 CN_112 3 CN_115 3 CN_116 3 CN_118 3 CN_120 3 CN_122 3 CN_124 3 CN_127 3 CN_129 3 CN_132 3 CN_134 3 CN_137 3 CN_139 3 CN_144 3 CN_145 3 CN_178 3 CN_182 3 CN_183 3 CN_186 3 INTWT 8 WTFA 4 CCFACT 8 CN_337 3 CN_341 3 CN_342 3 CN_344 4 CN_351 3 CN_352 3 CN_401 3 CN_402 3 CN_409 3 CN_412 3 CN_416 3 CN_419 3 CN_420 3 CN_421 3 CN_422 3 CN_423 3 CN_424 3 CN_425 3 CN_426 3 CN_427 3 CN_428 3 CN_429 3 CN_430 3 CN_431 3 CN_432 3 CN_433 3 CN_434 3 CN_442 3 CN_443 3 CN_444 3 CN_445 3 CN_446 3 CN_448 3 CN_449 3 CN_450 3 CN_451 3 CN_452 3 CN_453 3 CN_454 3 CN_455 3 CN_456 3 CN_457 3 CN_458 3 CN_459 3 CN_460 3 CN_461 3 CN_462 3 CN_463 3 CN_464 3 CN_465 3 CN_466 3 CN_467 3 CN_468 3 CN_469 3 CN_470 3 CN_471 3 CN_472 3 CN_473 3 ; * INPUT ALL VARIABLES; INPUT RECTYPE 1 - 2 YEAR 3 - 4 HHID $ 5 - 14 PNUM 15 - 16 WEEKCODE 19 - 20 CN_21 21 - 21 CN_22 22 - 23 CN_24 24 - 24 CN_25 25 - 25 CN_27 27 - 28 CN_29 29 - 29 CN_30 30 - 30 CN_31 31 - 32 CN_34 $ 34 - 39 CN_34MO $ 34 - 35 CN_34YR $ 36 - 39 CN_40 40 - 40 CN_41 41 - 42 CN_43 43 - 43 CN_44 44 - 44 CN_45 45 - 45 CN_46 46 - 47 CN_48 48 - 48 CN_49 49 - 49 CN_50 50 - 50 CN_51 51 - 52 CN_53 53 - 53 CN_54 54 - 55 CN_56 56 - 56 CN_57 57 - 57 CN_58 58 - 59 CN_60 60 - 60 CN_61 61 - 61 CN_62 $ 62 - 62 CN_63 $ 63 - 63 CN_64 64 - 64 CN_65 65 - 66 CN_67 67 - 67 CN_68 68 - 68 CN_69 69 - 69 CN_70 70 - 70 CN_71 71 - 71 CN_72 72 - 72 CN_73 73 - 73 CN_74 74 - 74 CN_75 75 - 75 CN_76 76 - 76 CN_80 80 - 81 CN_82 82 - 83 CN_87 87 - 88 CN_89 89 - 90 CN_91 91 - 91 CN_92 92 - 92 CN_93 93 - 94 CN_95 95 - 97 CN_98 98 - 99 CN_100 100 - 101 CN_102 102 - 103 CN_104 104 - 105 CN_106 106 - 107 CN_108 108 - 110 CN_111 111 - 111 CN_112 112 - 114 CN_115 115 - 115 CN_116 116 - 117 CN_118 118 - 119 CN_120 120 - 121 CN_122 122 - 123 CN_124 124 - 126 CN_127 127 - 128 CN_129 129 - 131 CN_132 132 - 133 CN_134 134 - 136 CN_137 137 - 138 CN_139 139 - 141 CN_144 144 - 144 CN_145 145 - 145 CN_178 178 - 178 CN_182 182 - 182 CN_183 183 - 183 CN_186 186 - 186 INTWT 201 - 206 .1 WTFA 207 - 212 CCFACT 213 - 223 .9 CN_337 337 - 340 CN_341 341 - 341 CN_342 342 - 343 CN_344 344 - 350 CN_351 351 - 351 CN_352 352 - 352 CN_401 401 - 401 CN_402 402 - 403 CN_404 $ 404 - 404 CN_405 $ 405 - 408 CN_409 409 - 411 CN_412 412 - 415 CN_416 416 - 418 CN_419 419 - 419 CN_420 420 - 420 CN_421 421 - 421 CN_422 422 - 422 CN_423 423 - 423 CN_424 424 - 424 CN_425 425 - 425 CN_426 426 - 426 CN_427 427 - 427 CN_428 428 - 428 CN_429 429 - 429 CN_430 430 - 430 CN_431 431 - 431 CN_432 432 - 432 CN_433 433 - 433 CN_434 434 - 436 CN_437 $ 437 - 441 CN_442 442 - 442 CN_443 443 - 443 CN_444 444 - 444 CN_445 445 - 445 CN_446 446 - 446 CN_448 448 - 448 CN_449 449 - 449 CN_450 450 - 450 CN_451 451 - 451 CN_452 452 - 452 CN_453 453 - 453 CN_454 454 - 454 CN_455 455 - 455 CN_456 456 - 456 CN_457 457 - 457 CN_458 458 - 458 CN_459 459 - 459 CN_460 460 - 460 CN_461 461 - 461 CN_462 462 - 462 CN_463 463 - 463 CN_464 464 - 464 CN_465 465 - 465 CN_466 466 - 466 CN_467 467 - 467 CN_468 468 - 468 CN_469 469 - 469 CN_470 470 - 470 CN_471 471 - 471 CN_472 472 - 472 CN_473 473 - 473 ; * DEFINE VARIABLE LABELS; LABEL RECTYPE = "RECORD TYPE" YEAR = "PROCESSING YEAR" HHID = "HOUSEHOLD ID" PNUM = "PERSON NUMBER" WEEKCODE = "PROCESSING WEEK CODE" CN_21 = "LATE INTERVIEW (OR LAST ATTEMPT) FLAG" CN_22 = "TYPE OF LIVING QUARTERS:" CN_24 = "HAS TELEPHONE" CN_25 = "SEX" CN_27 = "AGE" CN_29 = "AGE RECODE #1" CN_30 = "AGE RECODE #2" CN_31 = "AGE RECODE #3" CN_34 = "MONTH AND YEAR OF BIRTH" CN_34MO = "MONTH" CN_34YR = "YEAR OF BIRTH" CN_40 = "HISPANIC ORIGIN IMPUTED FLAG" CN_41 = "MAIN RACIAL BACKGROUND" CN_43 = "RACE RECODE 1" CN_44 = "RACE RECODE 2" CN_45 = "RACE RECODE 3" CN_46 = "HISPANIC ORIGIN" CN_48 = "MARITAL STATUS" CN_49 = "VETERAN STATUS" CN_50 = "ACTIVE GUARD/RESERVE STATUS FOR PERSONS ON ACTIVE DUTY IN ARMED FORCES" CN_51 = "EDUCATION OF INDIVIDUAL - COMPLETED YEARS" CN_53 = "EDUCATION OF INDIVIDUAL RECODE" CN_54 = "HIGHEST EDUCATION OF RESPONSIBLE ADULT FAMILY MEMBER (DETAIL)" CN_56 = "HIGHEST EDUCATION OF RESPONSIBLE ADULT FAMILY MEMBER RECODE" CN_57 = "FAMILY INCOME $20,000 OR MORE" CN_58 = "FAMILY INCOME" CN_60 = "FAMILY INCOME RECODE" CN_61 = "NHIS POVERTY INDEX" CN_62 = "TYPE OF FAMILY" CN_63 = "RELATIONSHIP TO REFERENCE PERSON" CN_64 = "FAMILY RELATIONSHIP RECODE" CN_65 = "SIZE OF FAMILY" CN_67 = "SIZE OF FAMILY RECODE" CN_68 = "PARENT/OTHER ADULT RELATIVE (UNDER 25 YEARS OLD)" CN_69 = "MAJOR ACTIVITY (18+ YEARS OLD)" CN_70 = "HEALTH STATUS" CN_71 = "ACTIVITY LIMITATION STATUS- (ALL AGES)" CN_72 = "ACTIVITY LIMITATION STATUS MEASURED BY 'ABILITY TO WORK' (18-69 YEARS)" CN_73 = "LIMITATION OF SCHOOL ACTIVITIES" CN_74 = "NEEDS HELP WITH PERSONAL CARE (5-59 YEARS" CN_75 = "EMPLOYMENT STATUS IN PAST 2 WEEKS" CN_76 = "CLASS OF WORKER" CN_80 = "INDUSTRY RECODE 1" CN_82 = "INDUSTRY RECODE 2" CN_87 = "OCCUPATION RECODE 1" CN_89 = "OCCUPATION RECODE 2" CN_91 = "RESPONDENT" CN_92 = "CONDITION LIST ASSIGNED AND ASKED" CN_93 = "HEIGHT WITHOUT SHOES (18+ YEARS)" CN_95 = "WEIGHT WITHOUT SHOES (18+ YEARS)" CN_98 = "TOTAL RESTRICTED ACTIVITY DAYS IN PAST TWO WEEKS" CN_100 = "BED DAYS IN PAST TWO WEEKS" CN_102 = "WORK-LOSS DAYS IN PAST TWO WEEKS (CONTROL" CN_104 = "SCHOOL-LOSS DAYS IN PAST TWO WEEKS" CN_106 = "OTHER DAYS OF RESTRICTED ACTIVITY IN PAST TWO WEEKS" CN_108 = "BED DAYS IN PAST 12 MONTHS" CN_111 = "BED DAYS IN PAST 12 MONTHS - RECODE" CN_112 = "DOCTOR VISITS IN PAST 12 MONTHS" CN_115 = "INTERVAL SINCE LAST DOCTOR VISIT" CN_116 = "NUMBER OF CONDITIONS LOCATIONS FREQUENCY FREQUENCY ITEMS AND CODES" CN_118 = "NUMBER OF ACUTE INCIDENCE CONDITIONS" CN_120 = "NUMBER OF TWO-WEEK DOCTOR VISITS" CN_122 = "NUMBER OF SHORT-STAY HOSPITAL EPISODES IN PAST 12 MONTHS" CN_124 = "SHORT-STAY HOSPITAL EPISODE DAYS IN PAST 12 MONTHS" CN_127 = "NUMBER OF SHORT-STAY HOSPITAL EPISODES IN PAST 12 MONTHS EXCLUDING DELIVERY" CN_129 = "SHORT-STAY HOSPITAL EPISODE DAYS IN PAST 12 MONTHS EXCLUDING DELIVERY" CN_132 = "NUMBER OF SHORT-STAY HOSPITAL DISCHARGES IN PAST 6 MONTHS" CN_134 = "NUMBER OF DAYS IN SHORT-STAY HOSPITAL IN PAST 12 MONTHS FOR DISCHARGES IN PAST 6 MONTHS" CN_137 = "NUMBER OF SHORT-STAY HOSPITAL DISCHARGES IN PAST 6 MONTHS EXCLUDING DELIVERY" CN_139 = "NUMBER OF DAYS IN SHORT-STAY HOSPITAL IN PAST 12 MONTHS FOR DISCHARGES IN PAST 6 MONTHS EXCLUDING DELIVERY" CN_144 = "YEARS LIVED IN STATE OF PRESENT RESIDENCE" CN_145 = "YEARS LIVED IN UNITED STATES" CN_178 = "PROCESSING QUARTER" CN_182 = "REGION" CN_183 = "MSA SIZE" CN_186 = "MSA - NON-MSA RESIDENCE" INTWT = "INTERIM BASIC WEIGHT BEFORE AGE-SEX-RACE ADJUSTMENT" WTFA = "FINAL ANNUAL BASIC WEIGHT" CCFACT = "CHRONIC CONDITION PREVALENCE AND INCIDENCE" CN_337 = "STRATUM FOR VARIANCE ESTIMATION" CN_341 = "PSU FOR VARIANCE ESTIMATION" CN_342 = "SUBSTRATUM FOR VARIANCE ESTIMATION" CN_344 = "SECONDARY SAMPLING UNIT" CN_351 = "TYPE OF PSU" CN_352 = "PANEL 4" CN_401 = "OVERALL MATCH CODE FIELD" CN_402 = "CORE CONDITION SERIAL NUMBER" CN_404 = "DISABILITY CONDITION LETTER" CN_405 = "ICD/DHIS CODE (DIAGNOSTIC CODE)" CN_409 = "CONDITION RECODE (B) (ICD RECODE, MODIFIED FOR NHIS) RECODES SECTION)" CN_412 = "ACUTE RECODE (A) RECODES SECTION)" CN_416 = "CHRONIC RECODE (C) RECODES SECTION)" CN_419 = "ACUTE OR CHRONIC" CN_420 = "ONSET" CN_421 = "DOCTOR LAST SEEN" CN_422 = "DOCTOR EVER SEEN FOR THIS CONDITION" CN_423 = "CONDITION STATUS" CN_424 = "LENGTH OF TIME HAD CONDITION BEFORE CURED" CN_425 = "CONDITION PRESENT PAST 12-MONTHS" CN_426 = "CONDITION CAUSE OF ACTIVITY" CN_427 = "CONDITION CAUSED BY ACCIDENT/ INJURY" CN_428 = "IS INJURY ADVERSE REACTION OR COMPLICATION OF MEDICAL CARE" CN_429 = "PLACE OF ACCIDENT" CN_430 = "AT WORK AT TIME OF ACCIDENT" CN_431 = "MOTOR VEHICLE INVOLVED" CN_432 = "NUMBER OF VEHICLES INVOLVED" CN_433 = "MOVING VEHICLE INVOLVED" CN_434 = "CLASS OF ACCIDENT" CN_437 = "EXTERNAL CAUSE OF INJURY" CN_442 = "ICD-9 PLACE OF OCCURRENCE" CN_443 = "CAUSES LIMITATION OF" CN_444 = "MAIN CONDITION CAUSING SERIOUS DIFFICULTY SEEING FOR AT LEAST 12 MONTHS LONGER" CN_445 = "MAIN CONDITION CAUSING TROUBLE HEARING" CN_446 = "FIRST (OR SECOND) CONDITION MENTIONED WHICH CAUSES TROUBLE WITH UNDERSTANDING AND/OR COMMUNICATING" CN_448 = "MAIN ADL CONDITION" CN_449 = "MAIN IADL CONDITION" CN_450 = "MAIN FUNCTIONAL LIMITATION CONDITION" CN_451 = "SCHIZOPHRENIA" CN_452 = "PARANOID DISORDER" CN_453 = "BIPOLAR DISORDER" CN_454 = "MAJOR DEPRESSION" CN_455 = "PERSONALITY DISORDER" CN_456 = "SENILITY DISORDER" CN_457 = "ALCOHOL ABUSE DISORDER" CN_458 = "DRUG ABUSE DISORDER" CN_459 = "OTHER DISORDER" CN_460 = "MAIN CONDITION REQUIRING PHYSICAL THERAPY" CN_461 = "MAIN CONDITION REQUIRING OCCUPATIONAL THERAPY" CN_462 = "CONDITION FOR WHICH PERSON GOES TO DOCTOR ON REGULAR BASIS" CN_463 = "CONDITION FOR WHICH PERSON TAKES PRESCRIPTION MEDICINE" CN_464 = "MAIN CONDITION FOR WHICH PERSON WAS HOSPITALIZED" CN_465 = "CONDITION FOR WHICH PERSON IS ON SPECIAL DIET" CN_466 = "CONDITION FOR WHICH PERSON REQUIRES EQUIPMENT TO BREATHE" CN_467 = "CONDITION FOR WHICH PERSON RECEIVES PHYSICAL THERAPY" CN_468 = "CONDITION FOR WHICH PERSON GETS OCCUPATIONAL THERAPY" CN_469 = "CONDITION FOR WHICH PERSON GETS PROCEDURES DONE AT HOME" CN_470 = "CONDITION WHICH CAUSES DIFFICULTY IN STRENUOUS ACTIVITY" CN_471 = "CONDITION WHICH CAUSES DIFFICULTY GETTING ALONG WITH OTHERS" CN_472 = "CONDITION CAUSING DIFFICULTY CHEWING, SWALLOWING, DIGESTING" CN_473 = "CONDITION WHICH REQUIRES EQUIPMENT FOR TOILETING OR EATING" ; * ASSOCIATE VARIABLES WITH FORMAT VALUES; FORMAT RECTYPE DCN001X. YEAR DCN002X. HHID $DCN003X. PNUM DCN004X. WEEKCODE DCN005X. CN_21 DCN006X. CN_22 DCN007X. CN_24 DCN008X. CN_25 DCN009X. CN_27 DCN010X. CN_29 DCN011X. CN_30 DCN012X. CN_31 DCN013X. CN_34 $DCN014X. CN_34MO $DCN015X. CN_34YR $DCN016X. CN_40 DCN017X. CN_41 DCN018X. CN_43 DCN019X. CN_44 DCN020X. CN_45 DCN021X. CN_46 DCN022X. CN_48 DCN023X. CN_49 DCN024X. CN_50 DCN025X. CN_51 DCN026X. CN_53 DCN027X. CN_54 DCN028X. CN_56 DCN029X. CN_57 DCN030X. CN_58 DCN031X. CN_60 DCN032X. CN_61 DCN033X. CN_62 $DCN034X. CN_63 $DCN035X. CN_64 DCN036X. CN_65 DCN037X. CN_67 DCN038X. CN_68 DCN039X. CN_69 DCN040X. CN_70 DCN041X. CN_71 DCN042X. CN_72 DCN043X. CN_73 DCN044X. CN_74 DCN045X. CN_75 DCN046X. CN_76 DCN047X. CN_80 DCN048X. CN_82 DCN049X. CN_87 DCN050X. CN_89 DCN051X. CN_91 DCN052X. CN_92 DCN053X. CN_93 DCN054X. CN_95 DCN055X. CN_98 DCN056X. CN_100 DCN057X. CN_102 DCN058X. CN_104 DCN059X. CN_106 DCN060X. CN_108 DCN061X. CN_111 DCN062X. CN_112 DCN063X. CN_115 DCN064X. CN_116 DCN065X. CN_118 DCN066X. CN_120 DCN067X. CN_122 DCN068X. CN_124 DCN069X. CN_127 DCN070X. CN_129 DCN071X. CN_132 DCN072X. CN_134 DCN073X. CN_137 DCN074X. CN_139 DCN075X. CN_144 DCN076X. CN_145 DCN077X. CN_178 DCN078X. CN_182 DCN079X. CN_183 DCN080X. CN_186 DCN081X. INTWT DCN082X. WTFA DCN083X. CCFACT DCN084X. CN_337 DCN085X. CN_341 DCN086X. CN_342 DCN087X. CN_344 DCN088X. CN_351 DCN089X. CN_352 DCN090X. CN_401 DCN091X. CN_402 DCN092X. CN_404 $DCN093X. CN_405 $DCN094X. CN_409 DCN095X. CN_412 DCN096X. CN_416 DCN097X. CN_419 DCN098X. CN_420 DCN099X. CN_421 DCN100X. CN_422 DCN101X. CN_423 DCN102X. CN_424 DCN103X. CN_425 DCN104X. CN_426 DCN105X. CN_427 DCN106X. CN_428 DCN107X. CN_429 DCN108X. CN_430 DCN109X. CN_431 DCN110X. CN_432 DCN111X. CN_433 DCN112X. CN_434 DCN113X. CN_437 $DCN114X. CN_442 DCN115X. CN_443 DCN116X. CN_444 DCN117X. CN_445 DCN118X. CN_446 DCN119X. CN_448 DCN120X. CN_449 DCN121X. CN_450 DCN122X. CN_451 DCN123X. CN_452 DCN124X. CN_453 DCN125X. CN_454 DCN126X. CN_455 DCN127X. CN_456 DCN128X. CN_457 DCN129X. CN_458 DCN130X. CN_459 DCN131X. CN_460 DCN132X. CN_461 DCN133X. CN_462 DCN134X. CN_463 DCN135X. CN_464 DCN136X. CN_465 DCN137X. CN_466 DCN138X. CN_467 DCN139X. CN_468 DCN140X. CN_469 DCN141X. CN_470 DCN142X. CN_471 DCN143X. CN_472 DCN144X. CN_473 DCN145X. ; PROC CONTENTS DATA=NHIS.DIS1COND; PROC FREQ DATA=NHIS.DIS1COND; TITLE1 'FREQUENCY REPORT FOR 1995 NHIS DISABILITY CONDITION FILE'; TITLE2 '(WEIGHTED)'; TABLES RECTYPE/LIST MISSING; WEIGHT WTFA; PROC FREQ DATA=NHIS.DIS1COND; TITLE1 'FREQUENCY REPORT FOR 1995 NHIS DISABILITY CONDITION FILE'; TITLE2 '(UNWEIGHTED)'; TABLES RECTYPE/LIST MISSING; * USER NOTE: TO SEE UNFORMATTED VALUES IN PROCEDURES, ADD THE STATEMENT: FORMAT _ALL_; RUN;