what really bugs me is - why is R inconsistent with add parameter in plot() function? It sometimes work and sometimes not! In this example, it takes the parameter add=T with no problem:
plot(0:10, 0:10*3)
plot(identity, add=T, xlim=c(0,10))
plot(function (x) { sin(x)*10 }, add=T, xlim=c(0,10))
But when I issue
plot(c(2, 3, 4), c(20,10,15), add=T, pch="A")
It doesn't work!! It says that "add" is not a graphical parameter. What the hell???
Please do not write that I should use points() instead. I know I can use it. I want to understand the strange behaviour of R - why it sometimes work and sometimes not?
Thanks, Tomas
identity? – Andrie Jul 22 '11 at 11:09Tas a shortcut forTRUEcan get you into trouble. SinceTRUEis a reserved word, it will always beTRUE. But you can redefineT <- FALSE, orT <- 0which can lead to all kinds of unexpected behaviour. – Andrie Jul 22 '11 at 11:16