Re: [R] print Text on device

2007-10-09 Thread John Lande
thank you Greg, this is just what I needed. On 10/8/07, Greg Snow <[EMAIL PROTECTED]> wrote: > > Look at the textplot function in the gplots package. Does that do what > you want? > > -- > Gregory (Greg) L. Snow Ph.D. > Statistical Data Center > Intermountain Healthcare > [EMAIL PROTECTED] > (8

Re: [R] print Text on device

2007-10-08 Thread Greg Snow
Look at the textplot function in the gplots package. Does that do what you want? -- Gregory (Greg) L. Snow Ph.D. Statistical Data Center Intermountain Healthcare [EMAIL PROTECTED] (801) 408-8111 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [R] print Text on device

2007-10-05 Thread Praveen Kanakamedala
ments nor for any unauthorised access to or interference with this e-mail that may occur.-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Lande Sent: 04 October 2007 17:38 To: jim holtman Cc: r-help@r-project.org Subject: Re: [R] print Text on device I

Re: [R] print Text on device

2007-10-04 Thread jim holtman
One way is to 'sink' the output to a text file and then convert the text file to PDF. I am not sure what type of format you are assuming for the output. You might consider 'sweave' for getting the output to LaTex and then converting to PDF. On 10/4/07, John Lande <[EMAIL PROTECTED]> wrote: > I w

Re: [R] print Text on device

2007-10-04 Thread John Lande
I would like to print on a pdf a table with element coming from a vector. such as >example=c("a", "b") >pdf("table.pdf") >print(example) >dev.off() On 10/4/07, jim holtman <[EMAIL PROTECTED]> wrote: > > Can you provide an example of what your data looks like and how you > might want it plotted.

Re: [R] print Text on device

2007-10-04 Thread jim holtman
Can you provide an example of what your data looks like and how you might want it plotted. 'text' does 'put' data on your plot. What else do you want? On 10/4/07, John Lande <[EMAIL PROTECTED]> wrote: > hi BioC, > > > I need to plot a vector of characters on a pdf device, not as a legend, but >