Re: [R] Handouts / Reports or just simply printing text to PDF?

2010-06-25 Thread Tal Galili
Hi Ralf,


?pdf and ?png are good places to start.

There is also R2wd:
http://cran.r-project.org/web/packages/R2wd/index.html
For exporting R output to word.  I wrote a short tutorial session for it
here:
http://www.r-statistics.com/2010/05/exporting-r-output-to-ms-word-with-r2wd-an-example-session/

Best,
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)
--




On Fri, Jun 25, 2010 at 5:35 AM, Ralf B  wrote:

> I assume R won't easily generate nice reports (unless one starts using
> Sweave and LaTeX) but perhaps somebody here knows a package that can
> create report like output for special cases? How can I simply plot
> output into PDF? Perhaps you know a package I should check out? What
> do you guys do to create handouts (before actually publishing)?
>
> Thanks in advance,
> Ralf
>
> __
> R-help@r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>

[[alternative HTML version deleted]]

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Handouts / Reports or just simply printing text to PDF?

2010-06-25 Thread Matt Shotwell
Check out the brew package, by Jeff Horner.

Ralf B wrote:
> I assume R won't easily generate nice reports (unless one starts using
> Sweave and LaTeX) but perhaps somebody here knows a package that can
> create report like output for special cases? How can I simply plot
> output into PDF? 
> Perhaps you know a package I should check out? What
> do you guys do to create handouts (before actually publishing)?

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
-- 
Matthew S. Shotwell
Graduate Student
Division of Biostatistics and Epidemiology
Medical University of South Carolina
http://biostatmatt.com

__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.


Re: [R] Handouts / Reports or just simply printing text to PDF?

2010-06-24 Thread Erik Iverson

Ralf B wrote:

I assume R won't easily generate nice reports (unless one starts using
Sweave and LaTeX) but perhaps somebody here knows a package that can
create report like output for special cases? How can I simply plot
output into PDF? 


See ?pdf if you just want to save plots into a PDF file.

Perhaps you know a package I should check out? What

do you guys do to create handouts (before actually publishing)?


If you're an emacs user, or even if you're not, you might benefit greatly from 
org-mode and org-babel.  Just google those terms, they aren't directly 
associated with R, but can use R to easily generate pdf output (and/or html) in 
an Sweave type fashion without you having to know any markup language.  I can't 
recommend it highly enough.


__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.