I have a pretty simple code for generating graphs for a list of regions. But I would like to explicit the number of each observation inside the graph (near the line). Or maybe just the more recent number, the max and min. How can I do that? In order to make myself clear, I want to "use" some similar code to the data label option in Excel.
Thanks
Code:
levelsof region, local(levels)
foreach l of local levels {
tw line cont anotrim_ativ if region == "`l'", ///
ytitle("NÂș of firms") xtitle("Quarter/year") ///
lpattern(solid) lwidth(thick medthick) lcolor(navy) ///
title("Number of firms by quarter - `l'")
}


Comment