I am trying to calculate age count.. please let me know if the below command is correct..
bys ScheduleNo: egen Age_0_14 = count(B2Q1) if Age<=14
bys ScheduleNo: egen count_Age_0_14= max(Age_0_14)
bys ScheduleNo: egen Age_15_24 = count(B2Q1) if Age>=15 & Age<=24
bys ScheduleNo: egen count_Age_15_24= max(Age_15_24)
bys ScheduleNo: egen Age_25_34 = count(B2Q1) if Age>=25 & Age<=34
bys ScheduleNo: egen count_Age_25_34= max(Age_25_34)
bys ScheduleNo: egen Age_35_44 = count((B2Q1)) if Age>=35 & Age<=44
bys ScheduleNo: egen count_Age_35_44= max(Age_35_44)
bys ScheduleNo: egen Age_45_59 = count(B2Q1) if Age>=45& Age<=59
bys ScheduleNo: egen count_Age_45_59= max(Age_45_59)
bys ScheduleNo: egen Age_60_120 = count(B2Q1) if Age>=60& Age<=120
bys ScheduleNo: egen count_Age_60_120= max(Age_60_120)
recode count_* (.= 0)
Related Posts with how to calculate age count..
how to calculate the formula Euclidean distance as the picture,many thanks!How to calculate the formula Euclidean distance as the picture,many thanks! clear input double(year …
Help with data structure transfer for a multiple responses questionHi Statalist, I am a beginner user of Stata. I am trying to write some loop syntax and change the d…
ARDL regression Hello everybody, I regressed gdp growth rate on inflation, share of remittance and share of trade …
Preacher Hayes Process Model 4 for Panel data codeHello, I am trying to check the mediation effect of firm innovation on the relationship between Chie…
word command in stataWhat does word command do? Can anyone explain it with example? …
Subscribe to:
Post Comments (Atom)
0 Response to how to calculate age count..
Post a Comment