Solved – Interpret a multiple linear regression when Y is log transformed

I have the following multiple linear regression model:
Log(y) = B0 + B1X1 + B2X2 + B3x3 + e.
X1 is a dummy that can take 0 = male and 1 = female and
X2 and X3 are continuous variables.

I am not entirely sure on how to interpret the coefficients for the variables.
The coefficient for the dummy variable is 0,20. Does that mean, that changing from male to female (male is baseline) the Y will increase by an average of 20%. Is it directly translated into percentage?

And for the continuous variables, the coefficient for X2 is 0,1. Does that mean that increasing X2 with 1 unit increases Y with an average of 10%? Again, is it directly translated into percentage?

Positive coefficients somehow indicate a positive effect, but they don't simply turn into percentages. There is a transformation. Let's say your model is $log y = b_0+b_1x_1$; this means $y=e^{b_0+b_1x_1}=A_0e^{b_1x_1}$. So, dummy or not, if $x_1$ increases by $1$ unit, $y$ increases by $e^{b_1}$, i.e. if $b_1=0.2$, $y$ increases by $e^{0.2}approx 1.22$, i.e. $22%$. The case is similar for your continuous variable.

Similar Posts:

Rate this post

Leave a Comment