The abline option is used abline :
plot(NA,NA, xlim=c(0,100), ylim=c(0,100)) for(i in seq(-15,600,6)) { abline(i, -3, lwd=6) }

Change to Tyler: this is what I used exactly in the knitr document, as annoying as the original.
plot(NA,NA, xlim=c(0,100), ylim=c(0,100), ylab=NA, xlab=NA, yaxt='n', xaxt='n', bty = "n") for(i in seq(-15,500,6)) { abline(i, -3, lwd=4) }
eipi10
source share