/****************************************************************************************/
/* This SAS program creates a permanent SAS format library that is used to analyze to */
/* analyze the SHPPS District dataset. */
/* */
/* Change the file location specification 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 "Shpps 2016 District Formats program.sas" BEFORE you run */
/* "****_SAS_Input_Program.sas" to create the SHPPS dataset. */
/****************************************************************************************/
libname library "c:\shpps2016";
Proc format library=library;
value yesno
1="Yes"
2="No"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HED25f
1="Yes"
2="No"
3="State does not offer certification, licensure, or endorsement to teach health education"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HED46f
1="Yes"
2="No"
3="No district level staff in this area"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HED51f
1="Yes"
2="No"
3="District did not have any professional development or in-service programs during the past two years"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED12F
1="Require"
2="Recommend"
3="Neither"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED26f
1="Yes"
2="No"
3="State does not offer certification, licensure, or endorsement to teach physical education at elementary school level"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED49f
1="Yes"
2="No"
3="State does not offer certification, licensure, or endorsement to teach physical education at middle school level"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED72f
1="Yes"
2="No"
3="State does not offer certification, licensure, or endorsement to teach physical education at high school level"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED75f
1="Less than 10 minutes per day"
2="10 to 19 minutes per day"
3="20 to 29 minutes per day"
4="30 or more minutes per day"
5="No specified time requirements or recommendations"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED96F
1="Yes"
2="No"
3="No district level staff in this area"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED102f
1="Yes"
2="No"
3="District did not have any professional development or in-service programs during the past two years"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED105f
1="Yes"
2="No"
3="Schools in this district do not have assistant coaches/volunteer athletic aides"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value PED116f
1="Yes"
2="No"
3="State does not offer certification, licensure, or endorsement to teach physical education at this level"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD5f
1="Students who have not received the required immunizations for entry into kindergarten or first grade are immediately excluded from attending classes"
2="Students who have not received the required immunizations for entry into kindergarten or first grade are allowed to attend classes for a specified number of days and then excluded "
3="This district does not have a policy that excludes students from attending classes if they have not received the required immunizations for entry into kindergarten or first grade"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD7f
1="Students who have not received the required immunizations for entry into middle school are immediately excluded from attending classes"
2="Students who have not received the required immunizations for entry into middle school are allowed to attend classes for a specified number of days and then excluded"
3="This district does not have a policy that excludes students from attending classes if they have not received the required immunizations for entry into middle school"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD9f
1="Students who have not received the required immunizations for entry into high school are immediately excluded from attending classes"
2="Students who have not received the required immunizations for entry into high school are allowed to attend classes for a specified number of days and then excluded"
3="This district does not have a policy that excludes students from attending classes if they have not received the required immunizations for entry into high school"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD12f
1="TB testing is required prior to school entry based on the results of TB screening "
2="TB testing is required prior to school entry for all students"
3="TB testing is not required prior to school entry for any students"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD13f
1="The district requires periodic TB testing for all students"
2="The district requires periodic TB testing only for students previously identified through screening"
3="The district does not require periodic TB testing for any students"
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD20f
1="Yes"
2="No"
3="No school staff may administer prescription medications "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD21f
1="Yes"
2="No"
3="No school staff may administer over-the-counter medications "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD27f
1="Yes"
2="No"
3="No district level staff in this area"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD34f
1="Yes"
2="No"
3="District did not have any professional development or in-service programs during the past two years "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD39f
1="Yes"
2="No"
3="Schools in our district do not complete injury reports"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD67f
1="Middle schools are required to make condoms available to students"
2="Middle schools are neither required nor prohibited from making condoms available to students"
3="Middle schools are prohibited from making condoms available to students"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD68f
1="High schools are required to make condoms available to students"
2="High schools are neither required nor prohibited from making condoms available to students"
3="High schools are prohibited from making condoms available to students"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD79f
1="Associate抯 degree in nursing"
2="Undergraduate/baccalaureate degree in nursing (e.g. BSN)"
3="Graduate degree in nursing"
4="Other (Specify)"
5="Specific education requirements are not described"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD81f
1="Yes"
2="No"
3="N/A"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD82f
1="Undergraduate degree in counseling"
2="Master's degree in counseling"
3="Other degree (Specify)"
4="Specific education requirements are not described"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD83f
1="Yes"
2="No"
3="State does not license, certify, or credential school counselors"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD84f
1="Undergraduate degree in psychology"
2="Master抯 degree in psychology"
3="Doctoral degree in psychology"
4="Other degree (Specify)"
5="Specific education requirements are not described"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD85f
1="Yes"
2="No"
3="State does not license, certify, or credential school psychologists"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD86f
1="Undergraduate degree in social work"
2="Master抯 degree in social work "
3="Other degree (Specify)"
4="Specific education requirements are not described"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD87f
1="Yes"
2="No"
3="State does not license, certify, or credential school social workers"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value HSD104f
1="Yes"
2="No"
3="School health aides are not employed by the district"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END10f
1="More than 0.5 mile"
2="More than 0.75 mile "
3="More than 1 mile"
4="More than 1.5 miles "
5="More than 2 miles "
6="No minimum distance "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END22f
1="Middle school start times are set by the district, not by individual schools"
2="Middle school start times are set by individual schools, but the district requires schools start no earlier than a specific time"
3="Middle school start times are set by individual schools, but the district recommends schools start no earlier than a specific time"
4="Middle school start times are set by individual schools and the district does not require or recommend an earliest start time "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END35f
1="High school start times are set by the district, not by individual schools"
2="High school start times are set by individual schools, but the district requires schools start no earlier than a specific time"
3="High school start times are set by individual schools, but the district recommends schools start no earlier than a specific time"
4="High school start times are set by individual schools and the district does not require or recommend an earliest start time "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END38f
1="Yes"
2="No"
3="No public transportation available"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END44f
1="Yes, indoor facilities only"
2="Yes, outdoor facilities only"
3="Yes, both indoor and outdoor facilities"
4="No"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END79f
1="Yes"
2="No"
3="N/A"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END84f
1="Require"
2="Recommend"
3="Neither"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END87f
1="Yes"
2="No"
3="Lead paint previously identified and remediated"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END88f
1="Yes"
2="No"
3="PCBs in caulking previously identified and remediated"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END89f
1="Yes"
2="No"
3="PCBs in fluorescent light ballasts previously identified and remediated"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END91f
1="Weekly"
2="Monthly"
3="Quarterly"
4="Every 6 months"
5="Once per year"
6="Only as needed"
7="Other time frame"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END92f
1="Never"
2="Each time"
3="Once per year"
4="Other time frame"
5="Schools do not apply pesticides"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END99f
1="Yes"
2="No"
3="District does not have school buses"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END112f
1="Not a factor"
2="Somewhat influential"
3="Very influential"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END114bf
1="Yes"
2="No"
3="No local government transportation officials"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END114cf
1="Yes"
2="No"
3="No local government land use or community planning officials"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END117f
1="Yes"
2="No"
3="No new facilities planned"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END128f
1="Yes"
2="No"
3="No such group"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END137f
1="Require"
2="Recommend"
3="Neither"
4="No elementary schools in our district have vending machines"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END138f
1="Require"
2="Recommend"
3="Neither"
4="No middle schools in our district have vending machines"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE END139f
1="Require"
2="Recommend"
3="Neither"
4="No high schools in our district have vending machines"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END156f
1="Yes"
2="No"
3="District does not have employee wellness programs"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END159f
1="Yes"
2="No"
3="No such staff in this district"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END162f
1="0 times"
2="1 or 2 times"
3="3 or 4 times "
4="5 or 6 times"
5="More than 6 times "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END166f
1="Yes"
2="No"
3="The district does not have a district-level school improvement plan"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value END167f
1="Yes"
2="No"
3="Schools in this district do not have SIPs"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE FSD3f
1="School district"
2="Food service management company"
3="Other"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD8f
1="Never"
2="Rarely"
3="Sometimes"
4="Almost always or always"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD10f
1="Never"
2="Rarely"
3="Sometimes"
4="Almost always or always"
5="District uses only precooked meat/poultry"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD14f
1="Yes"
2="No"
3="No district level staff in this area"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD21f
1="Yes"
2="No"
3="N/A"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD22f
1="Yes"
2="No"
3="District did not have any professional development or in-service programs during the past two years"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE FSD24f
1="No single individual is identified"
2="Superintendent"
3="Assistant superintendent "
4="District food service director (school food authority director) "
5="Other district-level staff member "
6="A school administrator"
7="A school-level faculty or staff member"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE FSD25f
1="Never"
2="During the past 12 months"
3="Between 1 and 3 years ago"
4="More than 3 years ago"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD29f
1="Yes"
2="No"
3="District has not evaluated or assessed the implementation of the wellness policy "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE FSD30f
1="High school diploma or GED"
2="Associate抯 degree in nutrition or a related field"
3="Undergraduate degree in nutrition or a related field"
4="Graduate degree in nutrition or a related field"
5="Specific education requirements are not described"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD32f
1="Yes"
2="No"
3="State does not certify, license, or endorse district food service directors (school food authority directors) "
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
Value FSD37f
1="Yes"
2="No"
3="State does not certify, license, or endorse school food service managers"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD40f
1="Yes, all schools"
2="Yes, some categories of schools, such as those with a certain percentage of students eligible for free or reduced-price meals"
3="No"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD42f
1="Require"
2="Recommend"
3="Neither"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD43f
1="Less than 5 minutes"
2="5 to 9 minutes"
3="10 to 14 minutes"
4="15 to 19 minutes"
5="20 or more minutes"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD47f
1="Less than 10 minutes"
2="10 to 19 minutes"
3="20 to 29 minutes"
4="30 or more minutes"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD53f
1="Neither the state nor the district allow the sale of such foods and beverages for fundraising purposes during the school day"
2="The district follows limits set by the state on the number of days"
3="The district抯 limits on the number of days are more restrictive than those set by the state"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value FSD61f
1="Require"
2="Recommend"
3="Neither"
4="District does not sell sugar-sweetened beverages"
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
value state
1 = 'Alabama'
2 = 'Alaska'
3 = 'Arizona'
4 = 'Arkansas'
5 = 'California'
6 = 'Colorado'
7 = 'Connecticut'
8 = 'Delaware'
9 = 'District Of Columbia'
10 = 'Florida'
11 = 'Georgia'
12 = 'Hawaii'
13 = 'Idaho'
14 = 'Illinois'
15 = 'Indiana'
16 = 'Iowa'
17 = 'Kansas'
18 = 'Kentucky'
19 = 'Louisiana'
20 = 'Maine'
21 = 'Maryland'
22 = 'Massachusetts'
23 = 'Michigan'
24 = 'Minnesota'
25 = 'Mississippi'
26 = 'Missouri'
27 = 'Montana'
28 = 'Nebraska'
29 = 'Nevada'
30 = 'New Hampshire'
31 = 'New Jersey'
32 = 'New Mexico'
33 = 'New York'
34 = 'North Carolina'
35 = 'North Dakota'
36 = 'Ohio'
37 = 'Oklahoma'
38 = 'Oregon'
39 = 'Pennsylvania'
40 = 'Rhode Island'
41 = 'South Carolina'
42 = 'South Dakota'
43 = 'Tennessee'
44 = 'Texas'
45 = 'Utah'
46 = 'Vermont'
47 = 'Virginia'
48 = 'Washington'
49 = 'West Virginia'
50 = 'Wisconsin'
51 = 'Wyoming'
;
value active
0='Non Active'
1='Active'
;
value regionf
1='New England (Maine, New Hampshire, Vermont, Massachusetts, Rhode Island, Connecticut)'
2='Mid Atlantic (New York, New Jersey, Pennsylvania)'
3='East North Central (Ohio, Indiana, Illinois, Michigan, Wisconsin)'
4='West North Central (Minnesota, Iowa, Missouri, North Dakota, South Dakota, Nebraska, Kansas)'
5='South Atlantic (Delaware, Maryland, District of Columbia, Virginia, West Virginia, North Carolina, South Carolina, Georgia, Florida)'
6='East South Central (Kentucky, Tennessee, Alabama, Mississippi)'
7='West South Central (Arkansas, Louisiana, Oklahoma, Texas)'
8='Mountain (Montana, Idaho, Wyoming, Colorado, New Mexico, Arizona, Utah, Nevada)'
9='Pacific (Washington, Oregon, California, Alaska, Hawaii'
;
value urbanf
1='Non-Urban'
2='Urban'
3='Not Availabel'
;
value povertyf
1='0-5.9 Percent'
2='6-15.9 Percent'
3='16-30.9 Percent'
4='31 Percent or More'
5='Not Available'
;
value certainf
0='Non-Certainty District'
1='Certainty District'
;
Value statagreef
1='Agreed'
2='Refused'
3='Ineligible'
;
value statusyn
1='Yes'
0='No'
;
value statpartf
1='Participated'
2='Did Not Participate'
;
value identif
1='Assigned'
2='No Respondent Identified'
3='Module Not Applicable'
4='Respondent Refused'
5='Respondent Ineligible'
;
value SAMPSTRAF
11='City-Large'
12='City-Midsize'
13='City-Small'
21='Surburb-Large'
22='Surburb-Midsize'
23='Surburb-Small'
31='Town-Fringe'
32='Town-Distant'
33='Town-Remote'
41='Rural-Fringe'
42='Rural-Distant'
43='Rural-Remote'
;
value partif
1='Respondent Participated'
2='Respondent Did Not Participate'
3='Respondent Ineligible to Participate'
4='No Respondent Identified'
;
value type
1='Completed by Paper'
2='Completed by Web'
.M='Module eligible - No respondent'
.A='Skipped'
.C='Not answered'
.F='Logically inconsistent'
.N='Module is not applicable';
VALUE DIST
1='Yes'
0='No'
;
run;
国产精品久久久久久一级毛片