Hi!
I'm trying to annotate a histogram with the mean and sd. Here's a toy example:
However, in the graph, there's a weird gap between mu and `mean', and between sigma and `sd'. Does anyone know how I can get rid of them?
Thanks in advance!

I'm trying to annotate a histogram with the mean and sd. Here's a toy example:
Code:
sysuse auto, clear summarize mpg local mean: di %9.2fc r(mean) local sd: di %9.2fc r(sd) hist mpg, text(.08 30 "{&mu}:`mean', {&sigma}:`sd'")
Thanks in advance!
Comment