I'm running a regression of per capita consumption expenditure on income. I have a set of controls for household size, religion, and number of males in the household. I'm a bit confused why stata reports different regression coefficients depending on how I specify the set on controls (just put them as independent variables or put them as $controls. For instance, if I run the regression
I get a different coefficient for income than if I run the following code:
I do not understand why this happens. Can anyone provide any insight? Thanks!
reg consumption income householdsize religion numbermale
local controls "household size religion numbermale"
reg consumption income $controls
reg consumption income $controls
Comment