Re: [Rd] build time dependency

2009-09-28 Thread Seth Falcon
On Mon, Sep 28, 2009 at 11:25 AM, Romain Francois wrote: > Hi Uwe, > > I think you are supposed to do this kind of sequence: > > R CMD roxygen yourRoxygenablePackage > R CMD build yourRoxygenablePackage_roxygen > > ... but I don't like this because what you upload to cran is not the actual > sourc

Re: [Rd] documentation cross references under R 2.10.0dev for Windows

2009-09-28 Thread Gordon K Smyth
With one expection, all warnings go away when I download the relevant Bioconductor packages as source code and re-build them (rcmd INSTALL --build) on my own machine. The warnings re-appear if I install the Bioconductor packages in the normal way using biocLite("Biobase") etc. I will follow t

[Rd] Downloading R-2.10.0

2009-09-28 Thread Gabor Grothendieck
For Windows, this page http://cran.r-project.org/bin/windows/base/ gives a link to download - R 2.9.2 - r-patched (R 2.9.2 patched) - old releases and - r-devel (R 2.11.0) but there is no obvious link to R 2.10.0. From where do we download that? __

Re: [Rd] build time dependency

2009-09-28 Thread Romain Francois
On 09/28/2009 04:39 PM, Uwe Ligges wrote: Romain Francois wrote: On 09/27/2009 08:27 PM, Uwe Ligges wrote: Romain Francois wrote: Hello, Is there such thing as a build time dependency between packages : package B needs package A so that it can build, but once built it lives without it. Do

Re: [Rd] build time dependency

2009-09-28 Thread Uwe Ligges
Romain Francois wrote: On 09/27/2009 08:27 PM, Uwe Ligges wrote: Romain Francois wrote: Hello, Is there such thing as a build time dependency between packages : package B needs package A so that it can build, but once built it lives without it. Do you mean at a) "R CMD build" time or a

[Rd] lattice's mai/mar analog

2009-09-28 Thread Michael Ramati
hello, is there a way to control figure margins using package lattice, similarly to parameters mai/mar (which presumbly works only for figures of package graphics)? thanks!‎ [[alternative HTML version deleted]] __ R-devel@r-project.org mailin

[Rd] bug or feature in read.table?

2009-09-28 Thread Jens Oehlschlägel
Hi, I guess that the followig line in read.table tmp[i[i > 0L]] <- colClasses should read tmp[i[i > 0L]] <- colClasses[i > 0L] Is this a bug? Cheers Jens Oehlschlägel -- für nur 19,99 Euro/mtl.!* http://portal.gmx.net/de/go/dsl02 __ R-devel@r-proje

Re: [Rd] Windows Laptop specification query

2009-09-28 Thread Corrado
On Monday 28 September 2009 11:01:42 Prof Brian Ripley wrote: > The answer to (1) is in the rw-FAQ, so see Can you point me out exactly where? Since I did not find it. -- Corrado Topi Global Climate Change & Biodiversity Indicators Area 18,Department of Biology University of York, York, YO10 5Y

Re: [Rd] Windows Laptop specification query

2009-09-28 Thread Prof Brian Ripley
The answer to (1) is in the rw-FAQ, so see library(fortunes) fortune('WTFM') On Mon, 28 Sep 2009, Corrado wrote: 1) Would a package compiled for Windows 32bit run on Windows 64 bit and use the extended memory or not? 2) As for buying a performant laptop for R, I bought a Dell M6300 mobile wor

Re: [Rd] Windows Laptop specification query

2009-09-28 Thread Corrado
1) Would a package compiled for Windows 32bit run on Windows 64 bit and use the extended memory or not? 2) As for buying a performant laptop for R, I bought a Dell M6300 mobile workstation which is actually portable, and installed Kubuntu 904 64 bit alongside the standard windows installation.

[Rd] Starting values in “arima.sim” f unction

2009-09-28 Thread Lina Rusyte
Hello,   Could someone tell me please how can I find out which starting values has R used for the simulation?   I have AR(1) model:   y(t)=0.2*y(t-1)+0.2*y(t-2) + e(t)     (e(t) is distributed according standard normal distribution)   I need y(0) (or y(t-1), then t=1) values for

Re: [Rd] mboost_1.1-3 blackboost_fit (PR#13972)

2009-09-28 Thread Torsten Hothorn
On Sun, 27 Sep 2009, Uwe Ligges wrote: Please read the FAQs about submitting bug reports. Bugs in contributed packages must not go to the R-bugs repository but to the corresponding package maintainer, CCing in this case (I do not confirmed that it is a bug). Ivan, bd <- party:::ctreedp

Re: [Rd] Windows Laptop specification query

2009-09-28 Thread Prof Brian Ripley
On Mon, 28 Sep 2009, Sean O'Riordain wrote: Good morning Keith, Have a look at http://cran.r-project.org/bin/windows/base/rw-FAQ.html#There-seems-to-be-a-limit-on-the-memory-it-uses_0021 The short answer is that "it depends"... a) memory is limited under windows Yes, but 64-bit builds can be

[Rd] model.matrix troubles with AlgDesign

2009-09-28 Thread Ulrike Groemping
Dear DevelopeRs, in continuing with my suite of packages on experimental design, I am stuck with an issue that appears to be related to package AlgDesign - I have tried to get it solved by Bob Wheeler, but he seems to be stuck as well. Whenever AlgDesign is loaded, some of my code does not work

Re: [Rd] build time dependency

2009-09-28 Thread Romain Francois
On 09/27/2009 08:27 PM, Uwe Ligges wrote: Romain Francois wrote: Hello, Is there such thing as a build time dependency between packages : package B needs package A so that it can build, but once built it lives without it. Do you mean at a) "R CMD build" time or at b) "R CMD INSTALL" time?