Dear all,
Back with another basic question regarding the labeling of graphs.
I want to plot the savings rate over time (and for different countries), more specifically over the period 2001-2014. Due to this specific timeframe, I cannot use the standard
I have tried using minor ticks, which does show 'ticks' for intermediate years, but no labels. More specifically, I would like to see labels for 2001, 2005, 2009 and 2014.
The current code I have is
What do I need to change?
Thanks,
W.
Back with another basic question regarding the labeling of graphs.
I want to plot the savings rate over time (and for different countries), more specifically over the period 2001-2014. Due to this specific timeframe, I cannot use the standard
Code:
xlabel(2001([preferred range])2014)
The current code I have is
Code:
line savings_rate year, by(country,xrescale) xtitle("") ytitle("") title("") xlab(minmax) xmticks(#3)
Thanks,
W.
Comment