Hi
I am struggling with adding padding to the x axis. I use the following code:
I get the following graph

I would like to add padding before the concentration because as you see it is very close to the y axis, and I would also like to add padding after volume, Any idea how to do that?
Also how do I remove the legend in the code?
Cheers
I am struggling with adding padding to the x axis. I use the following code:
Code:
twoway /// (rcap low95 high95 row, vert) /// code for 95% CI (scatter proportion row if group ==1, mcolor(black)) /// dot for group 1 , /// legend at 6 o'clock position xlabel(1 "Concentration" 2 "Progressive motile" 3 "Total sperm count" 4 "Motility (%)" 5 "Volume", angle(30) noticks) /// /// note that the labels are 1.5, 4.5, etc so they are between rows 1&2, 4&5, etc. /// also note that there is a space in between different rows by leaving out rows 3, 6, 9, and 12 ylabel(0 "0" -5 "-5" -10 "-10" -15 "-15" -20 " -20" -25 "-25", angle(0)) /// no 1.6 label yline(0, lpattern(dash) lcolor(gs8)) /// /// aspect (next line) is how tall or wide the figure is aspect(0.7)
I get the following graph
I would like to add padding before the concentration because as you see it is very close to the y axis, and I would also like to add padding after volume, Any idea how to do that?
Also how do I remove the legend in the code?
Cheers
Comment