Hi all,
I am trying to create some event studies that look at price changes and number of units of a service provided. I have two plots below, one using units as the outcome and the other using ln(units+1) as the outcome. It seems like there is a very big difference in the ln units graph--the ommitted relative year is a whole step lower than surrounding years. Does anyone have any thoughts on what might be going on here?

I am trying to create some event studies that look at price changes and number of units of a service provided. I have two plots below, one using units as the outcome and the other using ln(units+1) as the outcome. It seems like there is a very big difference in the ln units graph--the ommitted relative year is a whole step lower than surrounding years. Does anyone have any thoughts on what might be going on here?
Code:
areg units rel_date_x_diff0-rel_date_x_diff4 o.rel_date_x_diff5 ///
rel_date_x_diff6-rel_date_x_diff19 rel_date0-rel_date19 c.diff_rate i.qtr, a(group_provider_service)
count if e(sample)
coefplot, keep(rel_date_x_diff*) vertical base omitted msymbol(diamond) ///
xtitle("QTR Relative to Price Change") ytitle("# of Units, unweighted") ///
mcolor("106 208 200") ciopts(lcolor("118 152 160")) note("N=`r(N)'") title("Full sample") ///
yline(0,lcolor("106 208 200") lpattern(dash)) xline(6, ///
lpattern(dash) lcolor(red)) scale(.8) xsize(9) ysize(7) ///
graphregion(fcolor(white) ifcolor(white) ilcolor(white)) ///
xscale(lcolor("0 51 102")) yscale(lcolor("0 51 102")) coeflabels(, truncate(10) angle(45)) ///
xlabel(, labcolor("0 51 102") noticks)
graph export ../output/es_units_diff_rate.pdf, replace
**LOG
areg ln_units rel_date_x_diff0-rel_date_x_diff4 o.rel_date_x_diff5 ///
rel_date_x_diff6-rel_date_x_diff19 rel_date0-rel_date19 c.diff_rate i.qtr, a(group_provider_service)
count if e(sample)
coefplot, keep(rel_date_x_diff*) vertical base omitted msymbol(diamond) ///
xtitle("QTR Relative to Price Change") ytitle("Ln Units") title("Full sample") ///
mcolor("106 208 200") ciopts(lcolor("118 152 160")) note("N=`r(N)'") ///
yline(0,lcolor("106 208 200") lpattern(dash)) xline(6, ///
lpattern(dash) lcolor(red)) scale(.8) xsize(9) ysize(7) ///
graphregion(fcolor(white) ifcolor(white) ilcolor(white)) ///
xscale(lcolor("0 51 102")) yscale(lcolor("0 51 102")) coeflabels(, truncate(10) angle(45)) ///
xlabel(, labcolor("0 51 102") noticks)
graph export ../output/es_lnunits_diff_rate.pdf, replace

Comment