Re: [R] Adding lines to the page

2018-06-28 Thread Stats Student
Didn't know about linesGrob(). Thanks On Wed, Jun 27, 2018, 4:38 PM Bert Gunter wrote: > "Considering that there are ways to add text on a page through textGrobs.." > > ... and the linesGrob() function would do the same for lines, no? > > Cheers, > Bert > > > > Bert Gunter > > "The trouble wit

Re: [R] Adding lines to the page

2018-06-27 Thread Richard M. Heiberger
See if the microplot package provides what you need. The package help file and the vignette will get you started. Microplot works with Hmisc::latex or with MS Word into either Word or HTML. On Wed, Jun 27, 2018 at 19:04 Stats Student wrote: > Thanks, Jeff. The Task View page was very informative

Re: [R] Adding lines to the page

2018-06-27 Thread Bert Gunter
"Considering that there are ways to add text on a page through textGrobs.." ... and the linesGrob() function would do the same for lines, no? Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Bre

Re: [R] Adding lines to the page

2018-06-27 Thread Stats Student
Thanks, Jeff. The Task View page was very informative. To answer your question, I'm using ggplot to generate my plots and grid/gridExtra/gtable to place those plots on a page. Considering that there are ways to add text on a page through textGrobs, independent of the plots, I was wondering if

Re: [R] Adding lines to the page

2018-06-27 Thread Jeff Newmiller
That would depend how you are generating the page... plots alone don't really have such options. If you don't know what this means then I suggest you read the Reproducible Research Task View [1]. knitr in conjunction with LaTeX (Rnw files) is very powerful, but there are many other tools as well

[R] Adding lines to the page

2018-06-27 Thread Stats Student
Hi, I'm looking for a way to add lines to a report. To be clear, I don't want to add lines to any specific plot, but instead to add line(s) to the page itself - e.g. add a line to the footer area, above the actual footer text. Any thoughts on how to do this? Many thanks. __