I am running a regression on 12 variables and one variable needs to be restricted by head of household status. Here is my syntax:
regress no_house_valueh famsize nchild ((age if relate==1)) no_vehicles trantime incwage incbus00 incwelfr incinvst incretir incss incsupp if statefip==53 & relate==1
Obviously this is not working. How do I restrict the age variable to relate==1?
regress no_house_valueh famsize nchild ((age if relate==1)) no_vehicles trantime incwage incbus00 incwelfr incinvst incretir incss incsupp if statefip==53 & relate==1
Obviously this is not working. How do I restrict the age variable to relate==1?
Comment