Hi guys, I need your help. I am in the process of doing an instrument variable estimation. For this I watched a video and modeled it after this one. My dataset consists of data on wage (wage), years of education (education), work experience (experience), north (north), south (south), west (west), east (east) and the education fees (fees). I have included all variables in the model except fees and north. Now I want to take fees as the instrument variable for education. I have now followed the instructions from the video and came up with the following command.
Now, however, the output says that I have more than one instrument variable. Therefore, do I really need to consider only the instrument variable for estimation in the first step? Would the following command be correct then?
Code:
reg education south east west experience fees, r ivregress 2sls wage (education = fees) south east west experience, r
Code:
reg education fees, r
Comment