Re: [R] Add comments on plot window

2008-07-01 Thread mysimbaa
I solved the problem with plot(0:1,0:1, type = "n", axes=FALSE,xlab="",ylab="") text(...) Thanks, Adel mysimbaa wrote: > > Dear R users, > > Is it possible to add comments in a plot window? > I have 3 plots -> this plots have to be commented on same window > Is possible to do the following :

Re: [R] Add comments on plot window

2008-07-01 Thread Gabor Grothendieck
Try this. mar is used to widen the right margin and xpd allows display outside of the plot. See ?par and ?legend op <- par(mar = c(5, 4, 4, 10) + 0.1, xpd = TRUE) plot(1:10) legend("topright", inset = c(-.3, 0), "abc\ndef", box.lty = 0) par(op) On Mon, Jun 30, 2008 at 7:43 AM, mysimbaa <[EMAIL

Re: [R] Add comments on plot window

2008-07-01 Thread Jim Lemon
On Mon, 2008-06-30 at 04:43 -0700, mysimbaa wrote: > Dear R users, > > Is it possible to add comments in a plot window? > I have 3 plots -> this plots have to be commented on same window > Is possible to do the following : > http://www.nabble.com/file/p18193822/plot%2526comments.JPG > plot%26comme

Re: [R] Add comments on plot window

2008-06-30 Thread Rolf Turner
On 30/06/2008, at 11:43 PM, mysimbaa wrote: Dear R users, Is it possible to add comments in a plot window? I have 3 plots -> this plots have to be commented on same window Is possible to do the following : http://www.nabble.com/file/p18193822/plot%2526comments.JPG plot%26comments.JPG I don't

[R] Add comments on plot window

2008-06-30 Thread mysimbaa
Dear R users, Is it possible to add comments in a plot window? I have 3 plots -> this plots have to be commented on same window Is possible to do the following : http://www.nabble.com/file/p18193822/plot%2526comments.JPG plot%26comments.JPG I don't know how to do it. Maybe plot.window or someth