Skip to content

Plot: Distance between tick and tick label on y-axis

2 messages · Lapointe, Pierre, Paul Murrell

#
Hi

You might have more luck with par(mgp), for example, ...

par(las=1)
plot(runif(50), type="l",xaxt="n",yaxt="n",ylab="", bty="l")
axis(2, mgp=c(3, .5, 0))
axis(1, mgp=c(3, .3, 0))

Paul
Lapointe, Pierre wrote: