Is there a way to limit the number of observations for a particular variable? Example if want to run a regression on a variable but wanted to limit the years of experience?
-
Login or Register
- Log in with
regress y x if experience == 10
regress y x if inlist(experience, 1, 5, 7)
regress y x if inrange(experience, 5, 11)
Comment