Yo can also set labels = FALSE inside axis(...) and print the labels in a separate command using Text. With this option you can rotate text with text if necessary
lablist<-as.vector(c(1:10)) axis(1, at=seq(1, 10, by=1), labels = FALSE) text(seq(1, 10, by=1), par("usr")[3] - 0.2, labels = lablist, srt = 45, pos = 1, xpd = TRUE)
Detailed explanation here

r3x Jan 07 '16 at 19:54 2016-01-07 19:54
source share