Hi,
I'm running the following regression:
and try to plot the coefficients using coefplots :
I get the following graph:

The coeflabels option doesn't seem to work. Do you have any idea why?
Also, I'd like to know if it's possible to add headers like this:

I've been trying the following code but it doesn't seem to work :
I'm running the following regression:
Code:
eststo: reg digit i.spill_1_3 i.spill_2_3 i.treat_1_3 i.treat_2_3 i.date /// i.spill_1_3#i.date i.treat_1_3#i.date i.spill_2_3#i.date i.treat_2_3#i.date
Code:
coefplot, keep( *#*) /// msymbol(S) drop(_cons) omitted /// vertical /// coeflabels(1.spill_1_3#date = "Spill 1/3 X Date")
The coeflabels option doesn't seem to work. Do you have any idea why?
Also, I'd like to know if it's possible to add headers like this:
I've been trying the following code but it doesn't seem to work :
Code:
coefplot, keep( *#*) /// msymbol(S) drop(_cons) omitted /// vertical /// coeflabels(1.spill_1_3#date = "Spill 1/3 X Date") /// headings(1.spill_1_3#date = "{bf:Date}")
Comment