Hello Stata users;
I'm using Stata versions 13.1, and I have this small data at hand:
The idea is to draw a time bar graph to descrive the evolution of the tauxdecroissance by those periods. Is there any way possible to transform the "priod" variable in a way that I could apply the tsset command on it and draw such graph? Any other solutions that get me the same result are welcome too!
With many thanks!
I'm using Stata versions 13.1, and I have this small data at hand:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str9 priode float tauxdecroissance "2005-2010" .4 "2010-2015" .14 "2015-2020" .3 "2020-2025" .33 "2025-2030" .2 "2030-2035" .12 "2035-2040" .1 "2040-2045" .04 "2045-2050" -.1 end
With many thanks!
Comment