[Rd] Different package versions on CRAN?

2005-05-08 Thread Philippe Grosjean
Hello, I am making changes to some of my packages that are exposed in CRAN. Some changes make them incompatible with previous R versions [and I use Depends: R (= 2.1.0)]. I suspect that, as soon as I will upload this new version to CRAN, it will replace the old one _everywhere_? However, the

Re: [Rd] Different package versions on CRAN?

2005-05-08 Thread Prof Brian Ripley
On Sun, 8 May 2005, Philippe Grosjean wrote: I am making changes to some of my packages that are exposed in CRAN. Some changes make them incompatible with previous R versions [and I use Depends: R (= 2.1.0)]. I suspect that, as soon as I will upload this new version to CRAN, it will replace the

Re: [Rd] Different package versions on CRAN?

2005-05-08 Thread Uwe Ligges
Prof Brian Ripley wrote: On Sun, 8 May 2005, Philippe Grosjean wrote: I am making changes to some of my packages that are exposed in CRAN. Some changes make them incompatible with previous R versions [and I use Depends: R (= 2.1.0)]. I suspect that, as soon as I will upload this new version to

[Rd] Light-weight data.frame class: was: how to add method to .Primitive function

2005-05-08 Thread Vadim Ogranovich
Hi, Encouraged by a tip from Simon Urbanek I tried to use the S3 machinery to write a faster version of the data.frame class. This quickly hits a snag: the [.default(x, i) for some reason cares about the dimensionality of x. In the end there is a full transcript of my R session. It includes the

[Rd] docu of isoreg

2005-05-08 Thread Kjetil Brinchmann Halvorsen
?isoreg has isoreg(x, y = NULL) Arguments: |x, y| in |isoreg|, coordinate vectors of the regression points. Alternatively a single plotting structure can be specified: see |xy.coords cid:[EMAIL PROTECTED]|. |...| potentially further arguments passed to methods. the ... dots seem superfluous.

Re: [Rd] How to understand packages, namespaces, environments

2005-05-08 Thread Gabor Grothendieck
On 5/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: [Alexander Stoddard] Subject: Re: [Rd] How to understand packages, namespaces, environments Does saying the following load package 'foo' into its own environment ? library(foo) [Duncan Murdoch] This loads some of the

RE: [Rd] How to understand packages, namespaces, environments

2005-05-08 Thread Mark.Bravington
On 5/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: [Alexander Stoddard] Subject: Re: [Rd] How to understand packages, namespaces, environments Does saying the following load package 'foo' into its own environment ? library(foo) [Duncan Murdoch] This loads

Re: [Rd] Light-weight data.frame class: was: how to add method to .Primitive function

2005-05-08 Thread Simon Urbanek
Vadim, On May 8, 2005, at 2:09 PM, Vadim Ogranovich wrote: # the naive [.lwdf = function (x, i, j) lapply(x[j], function (col) col[i]) Umm... what about his: [.lwdf = function(x, i, j) { r-lapply(lapply(j,function(a) x [[a]]),function(x) x[i]); names(r)-names(x)[j]; r } The subsetting operates

[Rd] can't build packages anymore...

2005-05-08 Thread Jeff D. Hamann
R developers, I've been happily building packages, under windows, for some time now and upgraded to R 2.1.0 and now when I attempt to build a package, I get the following errors... C:\conifersrcmd build Rconifers * checking for file 'Rconifers/DESCRIPTION' ... OK * preparing 'Rconifers': *

RE: [Rd] How to understand packages, namespaces, environments

2005-05-08 Thread Prof Brian Ripley
On Mon, 9 May 2005 [EMAIL PROTECTED] wrote: [Alexander Stoddard] Subject: Re: [Rd] How to understand packages, namespaces, environments Does saying the following load package 'foo' into its own environment ? library(foo) [Duncan Murdoch] This loads some of the (name, object) pairs from the

Re: [Rd] How to understand packages, namespaces, environments

2005-05-08 Thread Duncan Murdoch
Prof Brian Ripley wrote: On Mon, 9 May 2005 [EMAIL PROTECTED] wrote: [Alexander Stoddard] Subject: Re: [Rd] How to understand packages, namespaces, environments Does saying the following load package 'foo' into its own environment ? library(foo) [Duncan Murdoch] This loads some of the (name,