Hi!
Iam having problem fixing the y axis scale. see the picture below. I want the plots to be spread out so that its 5.85 at the bottom and 6.05 at the top of the y axis. How can i do this?
Kind regards,
Andre
Iam having problem fixing the y axis scale. see the picture below. I want the plots to be spread out so that its 5.85 at the bottom and 6.05 at the top of the y axis. How can i do this?
Code:
twoway (line lnw yob) (scatter lnw yob if q4 == 1, mlabel(quarter4) mlabposition(12)) (scatter lnw yob if q3 == 1, mlabel(quarter3) mlabposition(12) msym(Oh)) (scatter lnw yob if q2 == 1, mlabel(quarter2) msym(Oh) mlabposition(12)) (scatter lnw yob if q1 == 1, mlabel(quarter1) msym(Oh) mlabposition(12)), name(figure3org) scheme(s2mono)title("Original sample") legend(order (3 "Quarter 1" 2 "Quarter 4")) ysc(r(5.85 6.05))
Andre
Comment