Re: [Rd] R limits documented?

2011-02-12 Thread Uwe Ligges
I think it is easiest to point people to the manual R Internals for questions on the size of integers, pointers etc. Best, Uwe Ligges On 12.02.2011 03:24, David Winsemius wrote: On Feb 11, 2011, at 8:46 PM, Simon Urbanek wrote: On Feb 11, 2011, at 8:45 PM, Simon Urbanek wrote: On Feb

Re: [Rd] R limits documented?

2011-02-12 Thread Prof Brian Ripley
On Sat, 12 Feb 2011, Uwe Ligges wrote: I think it is easiest to point people to the manual R Internals for questions on the size of integers, pointers etc. But ?Memory-limits is a good start. The messages below (which were not from a current version of R with that call!) come from

[Rd] R 2.13.0 on Windows: R CMD check and 'du' not found

2011-02-12 Thread Henrik Bengtsson
FYI, I'm sure the following is a temporary issue, but in case it slips through, I want to raise it here. On Windows 7 64-bit, running Rcmd check on R devel gives: * using R version 2.13.0 Under development (unstable) (2011-02-11 r54330) * using platform: x86_64-pc-mingw32 (64-bit) * using

[Rd] large vignette problem

2011-02-12 Thread robin hankin
Hello I am trying to get one of my packages to be less than 5Mb in size, and it is currently 72Mb installed. It is big because the single vignette includes half a dozen very large PDF images. The PDF files are created as part of the Sweave process. Using jpg images instead of PDFs is

Re: [Rd] large vignette problem

2011-02-12 Thread Henrik Bengtsson
On Sat, Feb 12, 2011 at 4:26 PM, Henrik Bengtsson h...@biostat.ucsf.edu wrote: Never ever use JPEG for bitmap data plots. Use PNG instead.  See attach image (origin unknown; it is *not* an xkcd comics). Oops - missed to include the following: To generate PNGs, you can do it manually in the

Re: [Rd] large vignette problem

2011-02-12 Thread Dario Strbenac
I usually do : label=xyFile, echo=FALSE= png(xyPlot.png, width = 800, height = 800) @ label=xyPlot= ... ... ... # Code goes here. @ label=xyClose, echo=FALSE= null - dev.off() @ \begin{figure} \begin{center} \includegraphics{xyPlot.png} \end{center} \end{figure}

Re: [Rd] large vignette problem

2011-02-12 Thread robin hankin
Thanks guys. It works perfectly best wishes rksh On Sun, Feb 13, 2011 at 2:00 PM, Dario Strbenac d.strbe...@garvan.org.au wrote: I usually do : label=xyFile, echo=FALSE= png(xyPlot.png, width = 800, height = 800) @ label=xyPlot= ...      ...       ... # Code goes here. @