Skip to content
Prev 83315 / 398513 Next

Split graph labels in 2 levels

Marc Schwartz wrote:

            
Another way is to use the padj argument to axis:

   plot(rnorm(1000), xaxt = "n")
   axis(1, at = seq(0, 1000, 100), padj = c(0, 1))

Adjust padj to suit your needs; e.g. padj = c(1, -0.2)

Peter Ehlers