Skip to content
Prev 19455 / 63424 Next

?bquote

On 10 Feb 2006 12:15:10 +0100, Peter Dalgaard <p.dalgaard at biostat.ku.dk> wrote:
I think this is the same issue that Berton Gunter brought up on r-help
recently with

   x <- y <- 1:10
   plot(y ~ x, main=quote(abc))

which gives an error message even though

   plot(x,y,main=quote(abc))

does not.

The first case seems to be stripping off one layer so that

   plot(y ~ x, quote(quote(abc)))

is ok but just one quote is not.