Hello all,
I'm having an issue creating twoway bar graphs with an overlaid vertical line. I tried using the "tline" command - which does add a vertical line - but that line appears below the bar chart data. I would like the vertical line at 2009m9 to "overlay" (not sure if that's the correct terminology) the bar chart.
The datem variable takes the form 2000m1, 2000m2, 2000m3, etc.
Thanks in advance for the help.
-Chris
I'm having an issue creating twoway bar graphs with an overlaid vertical line. I tried using the "tline" command - which does add a vertical line - but that line appears below the bar chart data. I would like the vertical line at 2009m9 to "overlay" (not sure if that's the correct terminology) the bar chart.
The datem variable takes the form 2000m1, 2000m2, 2000m3, etc.
Code:
*Create monthly graphs for all 50 taxes forvalues j=1/50 { local i : display %02.0f `j' sort datem twoway (bar tax_`i' datem), tline(2009m9, lc(red)) graph export "$folder\\monthly_tax_`i'_Revenue.tif",replace }
-Chris
Comment