Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Paul Murrell
Hi Daniel Brewer wrote: Thanks for the replies, but I still cannot get what I want. I do not want the label inside the plot area, but in the top left of the paper, I suppose in the margins. When I try to use text to do this, it does not seem to plot it outside the plot area. I have also

Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Jim Lemon
Daniel Brewer wrote: Thanks for the replies, but I still cannot get what I want. I do not want the label inside the plot area, but in the top left of the paper, I suppose in the margins. When I try to use text to do this, it does not seem to plot it outside the plot area. I have also tried

Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Daniel Brewer
Jim Lemon wrote: Daniel Brewer wrote: Thanks for the replies, but I still cannot get what I want. I do not want the label inside the plot area, but in the top left of the paper, I suppose in the margins. When I try to use text to do this, it does not seem to plot it outside the plot area.

Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Daniel Brewer
Thanks for the replies, but I still cannot get what I want. I do not want the label inside the plot area, but in the top left of the paper, I suppose in the margins. When I try to use text to do this, it does not seem to plot it outside the plot area. I have also tried to use mtext, but that

Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Daniel Brewer
This works fine for one plot, but if it is a multiple plot (mfrow=c(2,2) say) then each individual label is placed in the same position i.e. absolute top left on the canvas. I would like it top left of each individual plot. Thanks anyway. Got any idea how to fix this? Dan Paul Murrell wrote:

Re: [R] Positioning text in top left corner of plot

2007-08-10 Thread Daniel Brewer
Thanks. That works if it is only a single plot, but if there are multiple plots (e.g. par(mfrow=c(2,2))) it confusingly puts the label in the absolute top left always i.e. the top left of plot one. Dan S Ellison wrote: Try something like mtext(side=3, line=-1, text=Here again?, adj=0,

[R] Positioning text in top left corner of plot

2007-08-07 Thread Daniel Brewer
Simple question how can you position text in the top left hand corner of a plot? I am plotting multiple plots using par(mfrow=c(2,3)) and all I want to do is label these plots a), b), c) etc. I have been fiddling around with both text and mtext but without much luck. text is fine but each plot

Re: [R] Positioning text in top left corner of plot

2007-08-07 Thread Greg Snow
] Positioning text in top left corner of plot Simple question how can you position text in the top left hand corner of a plot? I am plotting multiple plots using par(mfrow=c(2,3)) and all I want to do is label these plots a), b), c) etc. I have been fiddling around with both text and mtext

Re: [R] Positioning text in top left corner of plot

2007-08-07 Thread Benilton Carvalho
maybe this is what you want? plot(rnorm(10)) legend(topleft, A), bty=n) ? b On Aug 7, 2007, at 11:08 AM, Daniel Brewer wrote: Simple question how can you position text in the top left hand corner of a plot? I am plotting multiple plots using par(mfrow=c(2,3)) and all I want to do is