[Rd] R-devel problems

2003-02-24 Thread Jan de Leeuw
The OS X configure in R-devel has been changed to use two-level namespaces. There are still some problems. 1. Trunmed.c in the modreg packages defines a function heapsort(), while heapsort is also defined (differently) in /usr/lib/stdlib.h. I (temporarily) disabled the definition in stdlib.h.

[Rd] unz (PR#2579)

2003-02-24 Thread jutans
Full_Name: j utans Version: 1.6.2 OS: NT Submission from: (NULL) (195.102.198.206) unz() always fails to open a connection to files in zip archives on NT. It looks like unz_open in dounzip.c always returns FALSE, should the last line be return TRUE; __

[Rd] "trace" argument in legend() (PR#2578)

2003-02-24 Thread jerome
Full_Name: Jerome Asselin Version: 1.6.2 OS: RedHat Linux 7.2 Submission from: (NULL) (142.103.173.179) Should be an easy fix... Consider the examble below: plot(0,0) legend(0,0,c("Hello!","Hi!"),pch=1:2,lty=1:2,trace=T) It gives the following trace: > plot(0,0) > legend(0,0,c("Hello!","Hi!"

[Rd] Problem with hessian in deriv3 (PR#2577)

2003-02-24 Thread j . c . rougier
Hi Everyone, I noticed the following in deriv3: > deriv3(expression(x * y - b * z), c("x", "y", "z")) expression({ .value <- x * y - b * z .grad <- array(0, c(length(.value), 3), list(NULL, c("x", "y", "z"))) .hessian <- array(0, c(length(.value), 3, 3), list(NULL, c

Re: [Rd] hsv producing a color intensity not in [0,1] (PR#2576)

2003-02-24 Thread maechler
No bug : > "jchoi" == jchoi <[EMAIL PROTECTED]> > on Mon, 24 Feb 2003 17:32:23 +0100 (MET) writes: jchoi> Full_Name: Jae Choi jchoi> Version: 1.6.1 jchoi> OS: linux (x86) jchoi> Submission from: (NULL) (142.176.61.245) jchoi> Hello, jchoi> Any attempts to ac

Re: [Rd] match.arg

2003-02-24 Thread Spencer Graves
Thanks for your reply. I'm trying to generalize the MASS function "stepAIC" to study the effects of hierarchy for both interactions and parabolic terms. I include a new argument 'hierarchy = c("include", "exclude", "ignore")' being a 2-vector, with the first component for interaction and the

[Rd] hsv producing a color intensity not in [0,1] (PR#2576)

2003-02-24 Thread jchoi
Full_Name: Jae Choi Version: 1.6.1 OS: linux (x86) Submission from: (NULL) (142.176.61.245) Hello, Any attempts to access the "hsv" function returns the following type of error: Error in hsv(h = seq(start, ifelse(start > end, 1, 0) + end, length = n)%%1, : color intensity 1.25, not in

Re: [Rd] match.arg

2003-02-24 Thread Martin Maechler
> "Spencer" == Spencer Graves <[EMAIL PROTECTED]> > on Mon, 17 Feb 2003 17:43:23 -0800 writes: Spencer> Hello: I'm not on the "r-devel" list, but I just Spencer> modified "match.arg" from R 1.6.2 for Windows to Spencer> accept a vector for "arg". Spencer> Is it ap

RE: [Rd] Re: [R] Who to decide what a generic function should look like?

2003-02-24 Thread Philippe Grosjean
Henrik Bengtsson wrote: >For me a generic function should be fully generic in the sense that >there are no requirements of arguments agreement (and therefore it >should not be documented as a reply to Smyth's thread). Duncan Murdoch answered: >I don't agree. A generic function has a meaning. Oft