Re: [R] print table on plot

2012-04-27 Thread statquant2
Thank you all. addtable2plot seem to be the best solution visually speaking. ++ -- View this message in context: http://r.789695.n4.nabble.com/print-table-on-plot-tp4589804p4591958.html Sent from the R help mailing list archive at Nabble.com. __ R-hel

Re: [R] print table on plot

2012-04-27 Thread Jim Lemon
On 04/26/2012 11:26 PM, statquant2 wrote: Hello, I would like to be able to plot an array on a plot, something like: |arg1 | arg2 | arg3 val1| 0.9| 1.1| 2.4 val2| 0.33 | 0.23 | -1.4 val3| hello| stop | test I know Rwave is good to report but don't want to use it. ? Is there a

Re: [R] print table on plot

2012-04-26 Thread baptiste auguie
Hi, try also grid.table() in gridExtra b. On 27 April 2012 01:26, statquant2 wrote: > Hello, > I would like to be able to plot an array on a plot, something like: >        |arg1  | arg2 | arg3 > val1| 0.9    | 1.1    | 2.4 > val2| 0.33  | 0.23 | -1.4 > val3| hello| stop | test > I know Rwave is

Re: [R] print table on plot

2012-04-26 Thread Greg Snow
Look at the 'addtable2plot' function in the 'plotrix' package or the 'textplot' function in the 'gplots' package. On Thu, Apr 26, 2012 at 7:26 AM, statquant2 wrote: > Hello, > I would like to be able to plot an array on a plot, something like: >        |arg1  | arg2 | arg3 > val1| 0.9    | 1.1  

Re: [R] print table on plot

2012-04-26 Thread statquant2
Hello, ok for xtable, but how will I print the latex code generated in a plot ? Cheers -- View this message in context: http://r.789695.n4.nabble.com/print-table-on-plot-tp4589804p4590407.html Sent from the R help mailing list archive at Nabble.com. _

Re: [R] print table on plot

2012-04-26 Thread David Winsemius
On Apr 26, 2012, at 9:26 AM, statquant2 wrote: Hello, I would like to be able to plot an array on a plot, something like: |arg1 | arg2 | arg3 val1| 0.9| 1.1| 2.4 val2| 0.33 | 0.23 | -1.4 val3| hello| stop | test I know Rwave is good to report but don't want to use it. ? Is the