Given a model predicting a continuous variable with a dummy feature, how can the coefficient for the dummy variable be converted into a % change?
Example:
shop_sales ~ has_self_checkout
where the coefficient for has_self_checkout=1
is 2.89 with p=0.01
Based on my research, it seems like this should be converted into a percentage using (exp(2.89)-1)*100
(example). However, this gives 1712%, which seems too large and doesn't make sense in my modeling use case. I'm guessing this calculation doesn't make sense because it might only be valid for continuous independent variables (?), but not sure if this is correct.
The mean value for the dependent variable in my data is about 8, so a coefficent of 2.89, seems to imply a ballpark 2.89/8 = 36% increase.
I also considered log transforming my dependent variable to get % change coefficents from the model output, but since I have many 0s in the dependent variable, this leads to losing a lot of meaningful observations.