Hello
I am running a frequency table for wethever a person is getting a new child, based on how many childs the person have, divided into age groups. Stata then creates a seperate table for each agegroup. Is there any way of getting everything in just one table?
The code I am running:
I have 8 agegroups, so it then makes 8 seperate tables. Is there a way of getting it all into one table?
I am running a frequency table for wethever a person is getting a new child, based on how many childs the person have, divided into age groups. Stata then creates a seperate table for each agegroup. Is there any way of getting everything in just one table?
The code I am running:
Code:
so agegroup id year set m off by agegroup: /// tab number_of_children dmy_new_child , nofreq row
Comment