I have looked in the documentation spent quite some time googleing this but have not been able to find a solution. I would like to produce an overall title for different subgraphs produced by coefplot. Here is an example:
sysuse auto, clear
foreach var of varlist length weight {
regress `var' price foreign
eststo `var'
}
coefplot length || weight, title("Results")
As you can see, the title "Results" appears as title for every subgraph, I would like to have just one title for the whole graph, centered on top (like in the attached example that I produced with the Graph Editor). I am using stata12 IC on a linux OS.
Your help is very much appreciated!
Thank you,
Eva
sysuse auto, clear
foreach var of varlist length weight {
regress `var' price foreign
eststo `var'
}
coefplot length || weight, title("Results")
As you can see, the title "Results" appears as title for every subgraph, I would like to have just one title for the whole graph, centered on top (like in the attached example that I produced with the Graph Editor). I am using stata12 IC on a linux OS.
Your help is very much appreciated!
Thank you,
Eva
Comment