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..
test for structural breaks in panel dataHi everyone, I am looking for a command to test for structural breaks in a panel dataset; in particu…
Metaanalysis: Total events and p-value for subgroup and overall estimatesRegarding metaanalyses: 1) Binary outcomes: Is it possible to add overall total events and non-eve…
how to do a bar chart excluding the most frequent one? Hello, I am trying to demonstrate in a bar chart the percentage of people in various ethnic groups.…
Generating a dummy variable that takes the value 1 if another dummy takes the value 1 at least once in longitudinal dataHello everyone! I am working with unbalanced panel data. I have 18 annual waves (2000-2017) of the …
HP filterHello! I am a new user in Stata and I am struggling with this situation. I have panel data. I want…
Subscribe to:
Post Comments (Atom)
0 Response to how to calculate age count..
Post a Comment