Hello everyone, could someone kindly help me with how to rescale the 'age' axis using the graph editor? I managed to change the axis scale values as desired, but I'm having trouble adjusting the graph area. I would like the 'age' axis to display only values within the range of 20-60. Thank you in advance!
PS: additionally there is any command that could be used directly in the .do file for set the range of the "age axis" . my current command is the following:

PS: additionally there is any command that could be used directly in the .do file for set the range of the "age axis" . my current command is the following:
Code:
twoway (line Pred_Mother2 age, sort lcolor(blue) lwidth(medium)) /// (line Pred_Father2 age, sort lcolor(red) lwidth(medium)) /// (line Pred_F_no_kids2 age, sort lcolor(green) lwidth(medium)) /// (line Pred_M_no_kids2 age, sort lcolor(orange) lwidth(medium)), /// legend(label(1 "Mothers") label(2 "Fathers") label(3 "Females(no kids)") label(4 "Males(no kids)"))
Comment