/***/
/* This SAS program creates a permanent SAS format library that is used to analyze to */
/* analyze the 1995 NCHRBS dataset. */
/* */
/* Change the file location specification from "c:\nchrbs1995" to the location where */
/* you want the format library to be stored before you run this program. Change the */
/* location specification in the "library" statement at the top of the program. */
/* */
/* Note: Run "NCHRBS_1995_SAS_Format_Program.sas" BEFORE you run */
/* "NCHRBS_1995_SAS_Input_Program.sas" to create the 1995 NCHRBS dataset. */
/***/
libname library "c:\nchrbs1995";
proc format library=library;
value $Q1F
' '='Missing'
'1'='18 years old'
'10'='45-54 years old'
'11'='55-64 years old'
'12'='65 years old or older'
'2'='19 years old'
'3'='20 years old'
'4'='21 years old'
'5'='22 years old'
'6'='23 years old'
'7'='24 years old'
'8'='25-34 years old'
'9'='35-44 years old'
'other'='** Data Error **';
value $Q2F
' '='Missing'
'1'='Female'
'2'='Male'
'other'='** DATA ERROR **';
value $Q3F
' '='Missing'
'1'='Freshman'
'2'='Sophomore'
'3'='Junior'
'4'='Senior'
'5'='Graduate student'
'6'='Other'
'other'='** DATA ERROR **';
value $Q4F
' '='Missing'
'1'='1st year'
'2'='2nd year'
'3'='3rd year'
'4'='4th year'
'5'='5th year'
'6'='6th year'
'7'='7th year'
'8'='8th year or beyond'
'other'='** DATA ERROR **';
value $Q5F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q6F
' '='Missing'
'1'='White - not Hispanic'
'2'='Black - not Hispanic'
'3'='Hispanic or Latino'
'4'='Asian or Pacific Islander'
'5'='Native American or Alaskan'
'6'='Other'
'other'='** DATA ERROR **';
value $Q7F
' '='Missing'
'1'='Never been married'
'2'='Married'
'3'='Separated'
'4'='Divorced'
'5'='Widowed'
'other'='** DATA ERROR **';
value $Q8AF
' '='Missing'
'1'='Live alone'
'other'='** DATA ERROR **';
value $Q8BF
' '='Missing'
'1'='Spouse/Domestic Parnter'
'other'='** DATA ERROR **';
value $Q8CF
' '='Missing'
'1'='Roommate(s)/Friend(s)'
'other'='** DATA ERROR **';
value $Q8DF
' '='Missing'
'1'='Parents(s)/Guardian(s)'
'other'='** DATA ERROR **';
value $Q8EF
' '='Missing'
'1'='Other relatives'
'other'='** DATA ERROR **';
value $Q8FF
' '='Missing'
'1'='Your children'
'other'='** DATA ERROR **';
value $Q8GF
' '='Missing'
'1'='Other'
'other'='** DATA ERROR **';
value $Q9F
' '='Missing'
'1'='College dormitory or residence hall'
'2'='Fraternity or sorority house'
'3'='Other university/college housing'
'4'='Off-campus house or apartment'
'5'='Parent/guardian home'
'6'='Other'
'other'='** DATA ERROR **';
value $Q10F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q11F
' '='Missing'
'1'='0 hours'
'2'='1-9 hours'
'3'='10-19 hours'
'4'='20-29 hours'
'5'='30-39 hours'
'6'='40 hours'
'7'='More than 40 hours'
'other'='** DATA ERROR **';
value $Q12F
' '='Missing'
'1'='Yes'
'2'='No'
'3'='Not sure'
'other'='** DATA ERROR **';
value $Q13F
' '='Missing'
'1'='Did not finish high school'
'2'='Graduated high school/attained GED'
'3'='Some education after high school'
'4'='Graduated college'
'5'='Not sure'
'other'='** DATA ERROR **';
value $Q14F
' '='Missing'
'1'='Did not finish high school'
'2'='Graduated high school/attained GED'
'3'='Some education after high school'
'4'='Graduated college'
'5'='Not sure'
'other'='** DATA ERROR **';
value $Q15F
' '='Missing'
'1'='Never'
'2'='Rarely'
'3'='Sometimes'
'4'='Most of the time'
'5'='Always'
'other'='** DATA ERROR **';
value $Q16F
' '='Missing'
'1'='Do not drive a car'
'2'='Never'
'3'='Rarely'
'4'='Sometimes'
'5'='Most of the time'
'6'='Always'
'other'='** DATA ERROR **';
value $Q17F
' '='Missing'
'1'='0 times'
'2'='1 to 10 times'
'3'='11 to 20 times'
'4'='21 to 39 times'
'5'='40 or more times'
'other'='** DATA ERROR **';
value $Q18F
' '='Missing'
'1'='Did not ride a motorcycle'
'2'='Never'
'3'='Rarely'
'4'='Sometimes'
'5'='Most of the time'
'6'='Always'
'other'='** DATA ERROR **';
value $Q19F
' '='Missing'
'1'='0 times'
'2'='1 to 10 times'
'3'='11 to 20 times'
'4'='21 to 39 times'
'5'='40 or more times'
'other'='** DATA ERROR **';
value $Q20F
' '='Missing'
'1'='Did not ride a bicycle'
'2'='Never'
'3'='Rarely'
'4'='Sometimes'
'5'='Most of the time'
'6'='Always'
'other'='** DATA ERROR **';
value $Q21F
' '='Missing'
'1'='0 times'
'2'='1 to 10 times'
'3'='11 to 20 times'
'4'='21 to 39 times'
'5'='40 or more times'
'other'='** DATA ERROR **';
value $Q22F
' '='Missing'
'1'='Did not go boating or swimming'
'2'='Never'
'3'='Rarely'
'4'='Sometimes'
'5'='Most of the time'
'6'='Always'
'other'='** DATA ERROR **';
value $Q23F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 or 5 times'
'5'='6 or more times'
'other'='** DATA ERROR **';
value $Q24F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 or 5 times'
'5'='6 or more times'
'other'='** DATA ERROR **';
value $Q25F
'1'='0 days'
'2'='1 day'
'3'='2 or 3 days'
'4'='4 or 5 days'
'5'='6 or more days'
'other'='** DATA ERROR **';
value $Q26F
'1'='0 days'
'2'='1 day'
'3'='2 or 3 days'
'4'='4 or 5 days'
'5'='6 or more days'
'other'='** DATA ERROR **';
value $Q27F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 or 5 times'
'5'='6 or 7 times'
'6'='8 or 9 times'
'7'='10 or 11 times'
'8'='12 or more times'
'other'='** DATA ERROR **';
value $Q28AF
' '='Missing'
'1'='Total stranger'
'other'='** DATA ERROR **';
value $Q28BF
' '='Missing'
'1'='Friend/someone I know'
'other'='** DATA ERROR **';
value $Q28CF
' '='Missing'
'1'='Boyfriend/girlfriend/date'
'other'='** DATA ERROR **';
value $Q28DF
' '='Missing'
'1'='Spouse/domestic partner'
'other'='** DATA ERROR **';
value $Q28EF
' '='Missing'
'1'='Parent/other family member'
'other'='** DATA ERROR **';
value $Q28FF
' '='Missing'
'1'='Other'
'other'='** DATA ERROR **';
value $Q29F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 or 5 times'
'5'='6 or more times'
'other'='** DATA ERROR **';
value $Q30F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q31F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q32F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 or 5 times'
'5'='6 or more times'
'other'='** DATA ERROR **';
value $Q33F
' '='Missing'
'1'='Did not attempt suicide'
'2'='Yes'
'3'='No'
'other'='** DATA ERROR **';
value $Q34F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q35F
' '='Missing'
'1'='Never smoked a cigarette'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q36F
' '='Missing'
'1'='0 days'
'2'='1 or 2 days'
'3'='3 to 5 days'
'4'='6 to 9 days'
'5'='10 to 19 days'
'6'='20 to 29 days'
'7'='All 30 days'
'other'='** DATA ERROR **';
value $Q37F
' '='Missing'
'1'='Did not smoke cigarettes'
'2'='Less than 1 cigarette'
'3'='1 cigarette'
'4'='2 to 5 cigarettes'
'5'='6 to 10 cigarettes'
'6'='11 to 20 cigarettes'
'7'='More than 20 cigarettes'
'other'='** DATA ERROR **';
value $Q38F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q39F
' '='Missing'
'1'='Never smoked regularly'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q40F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q41F
' '='Missing'
'1'='0 days'
'2'='1 or 2 days'
'3'='3 to 5 days'
'4'='6 to 9 days'
'5'='10 to 19 days'
'6'='20 to 29 days'
'7'='All 30 days'
'other'='** DATA ERROR **';
value $Q42F
' '='Missing'
'1'='Never drank alcohol'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q43F
' '='Missing'
'1'='0 days'
'2'='1 or 2 days'
'3'='3 to 5 days'
'4'='6 to 9 days'
'5'='10 to 19 days'
'6'='20 to 29 days'
'7'='All 30 days'
'other'='** DATA ERROR **';
value $Q44F
'1'='0 DAYS'
'2'='1 DAY'
'3'='2 DAYS'
'4'='3 TO 5 DAYS'
'5'='6 TO 9 DAYS'
'6'='10 TO 19 DAYS'
'7'='20 OR MORE DAYS'
'other'='** DATA ERROR **';
value $Q45F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q46F
' '='Missing'
'1'='Never smoked marijuana'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q47F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 or more times'
'other'='** DATA ERROR **';
value $Q48F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q49F
' '='Missing'
'1'='Never used cocaine'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q50F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 or more times'
'other'='** DATA ERROR **';
value $Q51F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q52F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q53F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q54F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 to 99 times'
'7'='100 or more times'
'other'='** DATA ERROR **';
value $Q55F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 or more times'
'other'='** DATA ERROR **';
value $Q56F
' '='Missing'
'1'='0 times'
'2'='1 or 2 times'
'3'='3 to 9 times'
'4'='10 to 19 times'
'5'='20 to 39 times'
'6'='40 or more times'
'other'='** DATA ERROR **';
value $Q57F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or more times'
'other'='** DATA ERROR **';
value $Q58F
' '='Missing'
'1'='Never had sexual intercourse'
'2'='12 years old or younger'
'3'='13 or 14 years old'
'4'='15 or 16 years old'
'5'='17 or 18 years old'
'6'='19 or 20 years old'
'7'='21 to 24 years old'
'8'='25 years old or older'
'other'='** DATA ERROR **';
value $Q59F
' '='Missing'
'1'='Never had sex with a female'
'2'='1 female'
'3'='2 females'
'4'='3 females'
'5'='4 females'
'6'='5 females'
'7'='6 or more females'
'other'='** DATA ERROR **';
value $Q60F
' '='Missing'
'1'='Never had sex with a female'
'2'='None in past 3 months'
'3'='1 female'
'4'='2 females'
'5'='3 females'
'6'='4 females'
'7'='5 females'
'8'='6 or more females'
'other'='** DATA ERROR **';
value $Q61F
' '='Missing'
'1'='Never had sex with a male'
'2'='1 male'
'3'='2 males'
'4'='3 males'
'5'='4 males'
'6'='5 males'
'7'='6 or more males'
'other'='** DATA ERROR **';
value $Q62F
' '='Missing'
'1'='Never had sex with a male'
'2'='None in past 3 months'
'3'='1 male'
'4'='2 males'
'5'='3 males'
'6'='4 males'
'7'='5 males'
'8'='6 or more males'
'other'='** DATA ERROR **';
value $Q63F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or 3 times'
'4'='4 to 9 times'
'5'='10 to 19 times'
'6'='20 or more times'
'other'='** DATA ERROR **';
value $Q64F
' '='Missing'
'1'='Did not have sex in past 30 days'
'2'='Never'
'3'='Rarely'
'4'='Sometimes'
'5'='Most of the time'
'6'='Always'
'other'='** DATA ERROR **';
value $Q65F
' '='Missing'
'1'='Never had sexual intercourse'
'2'='Yes'
'3'='No'
'other'='** DATA ERROR **';
value $Q66F
' '='Missing'
'1'='Never had sexual intercourse'
'2'='Yes'
'3'='No'
'other'='** DATA ERROR **';
value $Q67AF
' '='Missing'
'1'='No method was used'
'other'='** DATA ERROR **';
value $Q67BF
' '='Missing'
'1'='Birth control pills'
'other'='** DATA ERROR **';
value $Q67CF
' '='Missing'
'1'='Condoms'
'other'='** DATA ERROR **';
value $Q67DF
' '='Missing'
'1'='Withdrawal'
'other'='** DATA ERROR **';
value $Q67EF
' '='Missing'
'1'='Some other method'
'other'='** DATA ERROR **';
value $Q67FF
' '='Missing'
'1'='Not sure'
'other'='** DATA ERROR **';
value $Q68F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 or more times'
'4'='Not sure'
'other'='** DATA ERROR **';
value $Q69F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q70F
'1'='Never been forced to have sex'
'2'='4 years old or younger'
'3'='5 to 12 years old'
'4'='13 or 14 years old'
'5'='15 or 16 years old'
'6'='17 or 18 years old'
'7'='19 or 20 years old'
'8'='21 to 24 years old'
'9'='25 years old or older'
'other'='** DATA ERROR **';
value $Q71F
'1'='Never been forced to have sex'
'2'='4 years old or younger'
'3'='5 to 12 years old'
'4'='13 or 14 years old'
'5'='15 or 16 years old'
'6'='17 or 18 years old'
'7'='19 or 20 years old'
'8'='21 to 24 years old'
'9'='25 years old or older'
'other'='** DATA ERROR **';
value $Q72F
' '='Missing'
'1'='Yes'
'2'='No'
'3'='Not sure'
'other'='** DATA ERROR **';
value $Q73F
' '='Missing'
'1'='Very underweight'
'2'='Slightly underweight'
'3'='About the right weight'
'4'='Slightly overweight'
'5'='Very overweight'
'other'='** DATA ERROR **';
value $Q74F
' '='Missing'
'1'='Lose weight'
'2'='Gain weight'
'3'='Stay the same weight'
'4'='Not trying to do anything'
'other'='** DATA ERROR **';
value $Q75F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q76F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q77F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q78F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q81F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q82F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q83F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q84F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q85F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q86F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q87F
' '='Missing'
'1'='0 times'
'2'='1 time'
'3'='2 times'
'4'='3 or more times'
'other'='** DATA ERROR **';
value $Q88F
' '='Missing'
'1'='0 days'
'2'='1 day'
'3'='2 days'
'4'='3 days'
'5'='4 days'
'6'='5 days'
'7'='6 days'
'8'='7 days'
'other'='** DATA ERROR **';
value $Q89F
' '='Missing'
'1'='0 days'
'2'='1 day'
'3'='2 days'
'4'='3 days'
'5'='4 days'
'6'='5 days'
'7'='6 days'
'8'='7 days'
'other'='** DATA ERROR **';
value $Q90F
' '='Missing'
'1'='0 days'
'2'='1 day'
'3'='2 days'
'4'='3 days'
'5'='4 days'
'6'='5 days'
'7'='6 days'
'8'='7 days'
'other'='** DATA ERROR **';
value $Q91F
' '='Missing'
'1'='0 days'
'2'='1 day'
'3'='2 days'
'4'='3 days'
'5'='4 days'
'6'='5 days'
'7'='6 days'
'8'='7 days'
'other'='** DATA ERROR **';
value $Q92F
' '='Missing'
'1'='Yes'
'2'='No'
'other'='** DATA ERROR **';
value $Q93F
' '='Missing'
'1'='0 teams'
'2'='1 team'
'3'='2 teams'
'4'='3 or more teams'
'other'='** DATA ERROR **';
value $Q94F
' '='Missing'
'1'='Yes'
'2'='No'
'3'='Not sure'
'other'='** DATA ERROR **';
value $Q95AF
' '='Missing'
'1'='College classes'
'other'='** DATA ERROR **';
value $Q95BF
' '='Missing'
'1'='Residence hall'
'other'='** DATA ERROR **';
value $Q95CF
' '='Missing'
'1'='Student clubs'
'other'='** DATA ERROR **';
value $Q95DF
' '='Missing'
'1'='Student health center'
'other'='** DATA ERROR **';
value $Q95EF
' '='Missing'
'1'='Health fair'
'other'='** DATA ERROR **';
value $Q95FF
' '='Missing'
'1'='Pamphlets, brochures'
'other'='** DATA ERROR **';
value $Q95GF
' '='Missing'
'1'='College newspapers'
'other'='** DATA ERROR **';
value $Q95HF
' '='Missing'
'1'='Informal discussions'
'other'='** DATA ERROR **';
value $Q95IF
' '='Missing'
'1'='Other'
'other'='** DATA ERROR **';
value $Q95JF
' '='Missing'
'1'='Did not receive'
'other'='** DATA ERROR **';
value $Q96AF
' '='Missing'
'1'='Tobacco use prevention'
'other'='** DATA ERROR **';
value $Q96BF
' '='Missing'
'1'='Alcohol/drug use prevention'
'other'='** DATA ERROR **';
value $Q96CF
' '='Missing'
'1'='Violence prevention'
'other'='** DATA ERROR **';
value $Q96DF
' '='Missing'
'1'='Injury prevention/safety'
'other'='** DATA ERROR **';
value $Q96EF
' '='Missing'
'1'='Suicide prevention'
'other'='** DATA ERROR **';
value $Q96FF
' '='Missing'
'1'='Pregnancy prevention'
'other'='** DATA ERROR **';
value $Q96GF
' '='Missing'
'1'='STD prevention'
'other'='** DATA ERROR **';
value $Q96HF
' '='Missing'
'1'='AIDS/HIV prevention'
'other'='** DATA ERROR **';
value $Q96IF
' '='Missing'
'1'='Dietary behaviors'
'other'='** DATA ERROR **';
value $Q96JF
' '='Missing'
'1'='Physical activity'
'other'='** DATA ERROR **';
value $SCHTYPE
' '='Missing'
'1'='Two year school'
'2'='Four year school'
'other'='** Data Error **';
run;