Dear Statalist,
I have a question with regards to the coefficient interpretation of my model.
I am doing a fixed effects model on the effect of house price changes on consumption.
My house price index variable, hpilagthree, looks as follows:
My consumption variable, growthcons1, looks as follows:
To analyze the effect, I am running the following regression:
I receive the following output:

My question is how I interpret the 7.54. I know that with a log-log model, the coefficient is an elasticity with interpretation: a one percent increase in x results in a beta percent increase in y. However, my model isn't log-log, but delta log - delta log.
My guess is that I should divide the coefficient by 100, as the 'growth rates' (delta log variables) are not in percentages (so not 5%) but in units (so 0.05). Then the interpretation would be a one percent increase in the house price index three months previously increases current consumption by 0.075 percent. I am not sure whether this is correct.
Could anyone advise me whether this is the best way to specify the model and whether my interpretation is correct? Would it perhaps be better if I simply estimate a log log model, so
In that way the coefficient for loghpi would simply be the elasticity, but I am not sure whether I am incorporating house price growth in that case, because my research is centered around the effect of house price growth.
Thanks a lot and kind regards,
Lisanne Spiegelaar
I have a question with regards to the coefficient interpretation of my model.
I am doing a fixed effects model on the effect of house price changes on consumption.
My house price index variable, hpilagthree, looks as follows:
Code:
gen loghpi = ln(housepriceindex201206100) by facilityid, sort: gen hpi=loghpi[_n]-loghpi[_n-1] by facilityid: gen hpilagthree = hpi[_n-3]
Code:
gen logcons1 = ln(cons1) by facilityid, sort: generate growthcons1=logcons1[_n]-logcons1[_n-1]
Code:
xtreg growthcons1 hpilagthree lti savingsrate incomerate age unemp lendingrate, fe vce(cluster facilityid)
My question is how I interpret the 7.54. I know that with a log-log model, the coefficient is an elasticity with interpretation: a one percent increase in x results in a beta percent increase in y. However, my model isn't log-log, but delta log - delta log.
My guess is that I should divide the coefficient by 100, as the 'growth rates' (delta log variables) are not in percentages (so not 5%) but in units (so 0.05). Then the interpretation would be a one percent increase in the house price index three months previously increases current consumption by 0.075 percent. I am not sure whether this is correct.
Could anyone advise me whether this is the best way to specify the model and whether my interpretation is correct? Would it perhaps be better if I simply estimate a log log model, so
Code:
xtreg logcons1 loghpi[_n-3] lti savingsrate incomerate age unemp lendingrate, fe vce(cluster facilityid)
Thanks a lot and kind regards,
Lisanne Spiegelaar
Comment