/* This program creates the following household variables for Round 21: 1. Household size = HHSIZE 2. Number of household members less than 6 years old = UNDER6 3. Number of household members less than 18 years old = UNDER18 In Investigator, they are called, CV_HH_SIZE, CV_HH_UNDER_6, CV_UNDER_18 The following variables are used: Variable name Question in program in survey HAGExx HHI_AGE.xx HUID HHI_UID.xx */ ARRAY HAGE HAGE01-HAGE18; ARRAY HUID HUID01-HUID18; ARRAY HHDUM HHDUM01-HHDUM18; ARRAY DUM6 DUM601-DUM618; ARRAY DUM18 DUM1801-DUM1818; DO I=1 TO 18; HHDUM[I]=0; DUM6[I]=0; DUM18[I]=0; END; DO I=1 TO 18; IF HUID[I]>-1 THEN HHDUM[I]=1; IF -1