Hello everybody,
I am not used to editing Stata graphs and I am suffering to edit them, so I am here for help. I have plotted a variable (share of individuals working beyond statutory retirement age) by country, and I get the graph below. My questions are the following:
1/ Is there a way to add the x-axis for all plots? Being so many countries at once, I find it hard to read what are the peak values for each of them with x-axis being far down.
2/ How to edit the format of x-axis, displaying integer numbers instead of numbers with one decimal?
3/ Can I redistribute the number of columns and rows to avoid having this break with the last row having only 2 graphs? For instance, I wanted to plot 4 rows and 7 columns. I tried the following, but it did not work:
Thanks for your help and if you have any other suggestions, they are very much welcome!


I am not used to editing Stata graphs and I am suffering to edit them, so I am here for help. I have plotted a variable (share of individuals working beyond statutory retirement age) by country, and I get the graph below. My questions are the following:
1/ Is there a way to add the x-axis for all plots? Being so many countries at once, I find it hard to read what are the peak values for each of them with x-axis being far down.
2/ How to edit the format of x-axis, displaying integer numbers instead of numbers with one decimal?
3/ Can I redistribute the number of columns and rows to avoid having this break with the last row having only 2 graphs? For instance, I wanted to plot 4 rows and 7 columns. I tried the following, but it did not work:
Code:
hist age if work_stat_empl==1 & wave!=1 & age>ret_age2, by(country) color(navy) graphregion(fcolor(white)) xtitle("Age of respondent") column(7)
Comment