Hello,
I want to create 4 variables indicating whether girls and boys in the age group 0-5 and 6-14 are present in the household and then another 4 for how many are there. I'm using the below codes:
I'm not able to get the correct codes for constructing the rest four variables indicating the numbers in each group. Please help.
An example dataset:
Thanks
I want to create 4 variables indicating whether girls and boys in the age group 0-5 and 6-14 are present in the household and then another 4 for how many are there. I'm using the below codes:
Code:
by common_ID, sort: egen girls_0_5 = max((relationship==5|relationship==6) & gender==2 & age>=0 & age<=5) by common_ID, sort: egen boys_0_5 = max((relationship==5|relationship==6) & gender==1 & age>=0 & age<=5) by common_ID, sort: egen girls_6_14 = max((relationship==5|relationship==6) & gender==2 & age>=6 & age<=14) by common_ID, sort: egen boys_6_14 = max((relationship==5|relationship==6) & gender==1 & age>=6 & age<=14)
An example dataset:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str32 common_ID byte(relationship gender) int age str35 ind_id "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 1 1 67 "TUS10001106201913310301382332001001" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 2 2 61 "TUS10001106201913310301382332001002" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 3 1 33 "TUS10001106201913310301382332001003" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 4 2 26 "TUS10001106201913310301382332001004" "TUS10001106201913310301382332001" 6 1 5 "TUS10001106201913310301382332001005" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" "TUS10001106201913310301382332004" 1 2 52 "TUS10001106201913310301382332004001" end
Comment