Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread baptiste auguie
Hi, If you want grid graphics: For data.frames and matrices, gridExtra has a grid.table() function. For strings (paragraph), Rgraphics has a function too, whose name i forget. It could be possible to combine the two and define a method to display lists as well. HTH, baptiste On 30 March 2011

Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread Rmh
The latex() function in the Hmisc package will typeset your objects. Embed that in a tex document and run pdflatex. Rich Sent from my iPhone On Mar 30, 2011, at 5:51, "Maas James Dr (MED)" wrote: > I'd like to save some calculation outputs as a pdf, to incorporate with > others in a document

Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 30/03/11 15:42, Rainer M Krug wrote: > On 30/03/11 11:51, Maas James Dr (MED) wrote: >> I'd like to save some calculation outputs as a pdf, to incorporate with >> others in a document. I've tried > >> pdf("filename") >> name_of_object_to_output >

Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 30/03/11 11:51, Maas James Dr (MED) wrote: > I'd like to save some calculation outputs as a pdf, to incorporate with > others in a document. I've tried > > pdf("filename") > name_of_object_to_output > dev.off() > > but it doesn't seem to work, a

Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread Henrique Dallazuanna
Take a look in ?Sweave On Wed, Mar 30, 2011 at 6:51 AM, Maas James Dr (MED) wrote: > I'd like to save some calculation outputs as a pdf, to incorporate with > others in a document.  I've tried > > pdf("filename") > name_of_object_to_output > dev.off() > > but it doesn't seem to work, appears tha

Re: [R] save ordinary numerical calculations as pdf

2011-03-30 Thread Robert Baer
ealth Sciences 800 W. Jefferson St. Kirksville, MO 63501 660-626-2322 FAX 660-626-2965 -- From: "Maas James Dr (MED)" Sent: Wednesday, March 30, 2011 4:51 AM To: Subject: [R] save ordinary numerical calculations as pdf I'd like to s

[R] save ordinary numerical calculations as pdf

2011-03-30 Thread Maas James Dr (MED)
I'd like to save some calculation outputs as a pdf, to incorporate with others in a document. I've tried pdf("filename") name_of_object_to_output dev.off() but it doesn't seem to work, appears that this pdf function is for graphics? Is there a way to output numerical objects to pdf? Thanks J