Re: [R] Plotting text?

2011-10-24 Thread Kevin Burton
. -Original Message- From: Eik Vettorazzi [mailto:e.vettora...@uke.de] Sent: Saturday, October 22, 2011 7:06 AM To: rkevinbur...@charter.net Cc: r-help@r-project.org Subject: Re: [R] Plotting text? Hi Kevin, have a look at ?textplot from the gplots-package. cheers Am 22.10.2011 02:26

Re: [R] Plotting text?

2011-10-24 Thread Kevin Burton
- From: baptiste auguie [mailto:baptiste.aug...@googlemail.com] Sent: Saturday, October 22, 2011 12:46 AM To: rkevinbur...@charter.net Cc: r-help@r-project.org Subject: Re: [R] Plotting text? Try this, library(grid) grid.newpage() grid.text(text) HTH, baptiste On 22 October 2011 13:26

Re: [R] Plotting text?

2011-10-24 Thread Uwe Ligges
...@charter.net Cc: r-help@r-project.org Subject: Re: [R] Plotting text? Try this, library(grid) grid.newpage() grid.text(text) HTH, baptiste On 22 October 2011 13:26,rkevinbur...@charter.net wrote: I noticed that the text() command adds text to a plot. Is there a way to either make the plot

Re: [R] Plotting text?

2011-10-24 Thread Eik Vettorazzi
. -Original Message- From: Eik Vettorazzi [mailto:e.vettora...@uke.de] Sent: Saturday, October 22, 2011 7:06 AM To: rkevinbur...@charter.net Cc: r-help@r-project.org Subject: Re: [R] Plotting text? Hi Kevin, have a look at ?textplot from the gplots-package. cheers Am

Re: [R] Plotting text?

2011-10-24 Thread Kevin Burton
Subject: Re: [R] Plotting text? Hi Kevin, this should be read as halign=center - so is it a typo just in your mail or in your program as well? apart from that, the rules at the bottom lines of every post on this list also apply here: what have you tried and what went wrong? Cheers Am 24.10.2011

Re: [R] Plotting text?

2011-10-22 Thread Eik Vettorazzi
Hi Kevin, have a look at ?textplot from the gplots-package. cheers Am 22.10.2011 02:26, schrieb rkevinbur...@charter.net: I noticed that the text() command adds text to a plot. Is there a way to either make the plot blank or add text to a blank sheet. I would like to plot a page that

[R] Plotting text?

2011-10-21 Thread rkevinburton
I noticed that the text() command adds text to a plot. Is there a way to either make the plot blank or add text to a blank sheet. I would like to plot a page that contains just text, no plot lines, labels, etc. Suggestions? Kevin [[alternative HTML version deleted]]

Re: [R] Plotting text?

2011-10-21 Thread Sarah Goslee
Sure. The simplest way is to call plot.new() directly, with no arguments. That will give you a square plot with range of 0-1 on each axis (roughly). If you want a more complex underlying plot, that's possible too. If you take a look at ?par, you'll see options for all the different components of

Re: [R] Plotting text?

2011-10-21 Thread baptiste auguie
Try this, library(grid) grid.newpage() grid.text(text) HTH, baptiste On 22 October 2011 13:26, rkevinbur...@charter.net wrote: I noticed that the text() command adds text to a plot. Is there a way to either make the plot blank or add text to a blank sheet. I would like to plot a page that

[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