I have a panel dataset with the number of deliveries by health facility - day of week - year - month. I would like to know the effect of a dummy for Friday (d_6a) on the number of deliveries (npar), with year, month and year/month fixed effects as well as with health facility fixed effect. I also included a number of control variables.
I found a negative effect and compared it to the mean of the dependend variable in weekdays other than Friday. The effect of d_6a on npar corresponded to a 75% drop. In order to have a straight idea of the effect proportion, I also ran the regression for the log of the number of deliveries (lnpar). However I got a -2 coefficient for d_6a! Anyone could explain me why this effect is not close to -0.75 and how should I interpret coefficients < -1 in regressions where the dependend variable is a ln?
I found a negative effect and compared it to the mean of the dependend variable in weekdays other than Friday. The effect of d_6a on npar corresponded to a 75% drop. In order to have a straight idea of the effect proportion, I also ran the regression for the log of the number of deliveries (lnpar). However I got a -2 coefficient for d_6a! Anyone could explain me why this effect is not close to -0.75 and how should I interpret coefficients < -1 in regressions where the dependend variable is a ln?
Code:
areg npar d_6a $control i.ano##i.mes, absorb(cnes) vce(robust) areg lnpar d_6a $control i.ano##i.mes, absorb(cnes) vce(robust)
Comment