Hi all,
I've got a dataset with a three level hierarchical structure that is giving me some trouble. You can see the general idea here:
In this case, there are several lines, each corresponding to a state that is nested within a region of the USA. How do I make it so stata will only include the first 2 states instead of all of them?
----
For reference, the real case I'm working with is schools with students, each of whom has multiple observations. Some schools have a hundred plus students, so graphs get messy. I'm trying to get a look at a handful of student's trends for each school, side by side, instead of all the students per school.
Thank you for any ideas!
I've got a dataset with a three level hierarchical structure that is giving me some trouble. You can see the general idea here:
Code:
webuse productivity graph twoway (scatter gsp year, connect(ascending)) if region<=2, by(region)
----
For reference, the real case I'm working with is schools with students, each of whom has multiple observations. Some schools have a hundred plus students, so graphs get messy. I'm trying to get a look at a handful of student's trends for each school, side by side, instead of all the students per school.
Thank you for any ideas!

Comment