[Rd] CRAN packages with invalid maintainer address

2006-04-05 Thread Kurt Hornik
Emails to Edgar Acuna <[EMAIL PROTECTED]>, Federico C. F. Calboli <[EMAIL PROTECTED]>, Hao Wu <[EMAIL PROTECTED]>, Lopaka Lee <[EMAIL PROTECTED]>, Maria Kocherginsky <[EMAIL PROTECTED]>, as maintainers of CRAN packages with QC problems that need addressing for the upcoming 2.3.0 re

[Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Henrik Bengtsson
Hi, forget about the below details. It is not related to the fact that the function is returned from a function. Sorry about that. I've been troubleshooting soo much I've been shoting over the target. Here is a much smaller reproducible example: x <- 1:10 y <- 1:10 + rnorm(length(x)) sp <- sm

[Rd] Return function from function and Recall()

2006-04-05 Thread Henrik Bengtsson
Hi, yesterday I got very useful feedback on what is the best way to return a function from a function. Now, I run into a problem calling a returned function that down the stream uses Recall(). Below is a self-contained example. I took away yesterday's code for returning a minimal environment fo

Re: [Rd] Integration of C and Fortran

2006-04-05 Thread Hin-Tak Leung
Prof Brian Ripley wrote: > Is > >>the enter point Fortran "orderdata_" absent of the loading table. > > a manual translation, and was the underscore there in the original (I > think it should be, but am just checking). The extra underscore added is the default behavior of many fortran

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > Hi, > > forget about the below details. It is not related to the fact that > the function is returned from a function. Sorry about that. I've > been troubleshooting soo much I've been shoting over the target. Here > is a much smaller reproducible e

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Kurt Hornik
> Prof Brian Ripley writes: > On Wed, 5 Apr 2006, Henrik Bengtsson wrote: >> Hi, >> >> forget about the below details. It is not related to the fact that >> the function is returned from a function. Sorry about that. I've >> been troubleshooting soo much I've been shoting over the target.

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Henrik Bengtsson
On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > > > Hi, > > > > forget about the below details. It is not related to the fact that > > the function is returned from a function. Sorry about that. I've > > been troubleshooting soo much I've b

[Rd] page() (Was: Re: predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall()))

2006-04-05 Thread Henrik Bengtsson
Here I think S3 dispatch is very natural. Try the following: page <- function(x, method = c("dput", "print"), ...) UseMethod("page") page.getAnywhere <- function(x, ..., idx=NULL) { name <- x$name; objects <- x$obj; if (length(objects) == 0) stop("no object named '", name, "' was foun

Re: [Rd] page() (Was: Re: predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall()))

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > Here I think S3 dispatch is very natural. Try the following: I don't: it is documented to work on a name not an object. > page <- function(x, method = c("dput", "print"), ...) UseMethod("page") > > page.getAnywhere <- function(x, ..., idx=NULL) { >

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: >> On Wed, 5 Apr 2006, Henrik Bengtsson wrote: >> >>> Hi, >>> >>> forget about the below details. It is not related to the fact that >>> the function is returned from a function. Sorry about tha

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Henrik Bengtsson
On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > > > On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > >> On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > >> > >>> Hi, > >>> > >>> forget about the below details. It is not related to the f

Re: [Rd] page() (Was: Re: predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall()))

2006-04-05 Thread Henrik Bengtsson
On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: > On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > > > Here I think S3 dispatch is very natural. Try the following: > > I don't: it is documented to work on a name not an object. What comes first, the documentation of a method or the method its

[Rd] wishlist: 'formula' method for stripchart()

2006-04-05 Thread Peter Ehlers
Folks, I would find it useful to have a formula method for stripchart() with 'data' and 'subset' arguments, similar to boxplot.formula() whose code can probably be adapted fairly easily. Comments? Peter Ehlers (Win XP) __ R-devel@r-project.org mailin

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Luke Tierney
On Wed, 5 Apr 2006, Prof Brian Ripley wrote: > On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > >> On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: >>> On Wed, 5 Apr 2006, Henrik Bengtsson wrote: >>> Hi, forget about the below details. It is not related to the fact that th

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Luke Tierney wrote: > On Wed, 5 Apr 2006, Prof Brian Ripley wrote: > >> [...] >> >> Now, I was a little surprised that Recall() needed to do a lookup, but R's >> context only contains the name of the called function and not (a pointer >> to) the function. > > I think the callf

Re: [Rd] wishlist: 'formula' method for stripchart()

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Peter Ehlers wrote: > Folks, > > I would find it useful to have a formula method for > stripchart() with 'data' and 'subset' arguments, similar > to boxplot.formula() whose code can probably be adapted > fairly easily. > > Comments? Are you offering to provide one? (Actually

Re: [Rd] predict.smooth.spline.fit and Recall() (Was: Re: Return function from function and Recall())

2006-04-05 Thread Prof Brian Ripley
On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: >> On Wed, 5 Apr 2006, Henrik Bengtsson wrote: >> >>> On 4/5/06, Prof Brian Ripley <[EMAIL PROTECTED]> wrote: On Wed, 5 Apr 2006, Henrik Bengtsson wrote: > Hi, > > forget abo

[Rd] uniroot warning (lack of) (PR#8750)

2006-04-05 Thread candrews
Full_Name: Chris Andrews Version: 2.2.1 OS: Windows Submission from: (NULL) (128.205.94.95) The function page for uniroot indicates If the algorithm does not converge in 'maxiter' steps, a warning is printed and the current approximation is returned. I have not been able to get a warni

Re: [Rd] wishlist: 'formula' method for stripchart()

2006-04-05 Thread Peter Ehlers
Sorry, I should have been clearer. This is definitely not a high-priority item and I hadn't intended it to be included for 2.3.0. Sure, I'll provide the code and help page adjustment. Peter Ehlers Prof Brian Ripley wrote: > On Wed, 5 Apr 2006, Peter Ehlers wrote: > >> Folks, >> >> I would find