[R] Plotting text in existing plot?

2010-07-09 Thread Ralf B
I would like to plot some text in a existing plot graph. Is there a very simple way to do that. It does not need to be pretty at all (just maybe a way to center it or define a position within the plot). ( ? ) Ralf __ R-help@r-project.org mailing list

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Tal Galili
see ?text Tal Contact Details:--- Contact me: tal.gal...@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (English)

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Jim Lemon
On 07/09/2010 07:52 PM, Ralf B wrote: I would like to plot some text in a existing plot graph. Is there a very simple way to do that. It does not need to be pretty at all (just maybe a way to center it or define a position within the plot). ( ? ) Hi Ralf, The text function in the graphics

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Barry Rowlingson
On Fri, Jul 9, 2010 at 11:22 AM, Jim Lemon j...@bitwrit.com.au wrote: The text function in the graphics package will place text on your plot. It centers the text by default, so that: text(3,4,my neat\ntwo liner) will place the two lines of text centered at x=3 and y=4. BUT it only works

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Bert Gunter
Original poster wanted a simple way to do it, but when R has three graphics systems, four OO systems, and a zillion helpful people there's never a simple way :) -- Rather, I'd say it has a zillion simple ways. :) Bert Barry -- blog: http://geospaced.blogspot.com/ web:

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Tal Galili
Possible fortune. :) Contact Details:--- Contact me: tal.gal...@gmail.com | 972-52-7275845 Read me: www.talgalili.com (Hebrew) | www.biostatistics.co.il (Hebrew) | www.r-statistics.com (English)

Re: [R] Plotting text in existing plot?

2010-07-09 Thread Greg Snow
Subject: [R] Plotting text in existing plot? I would like to plot some text in a existing plot graph. Is there a very simple way to do that. It does not need to be pretty at all (just maybe a way to center it or define a position within the plot). ( ? ) Ralf