Re: [Rd] mac os x crashes with bioconductor microarray code (PR#8013)

2005-07-20 Thread Simon Urbanek
On Jul 19, 2005, at 12:34 AM, [EMAIL PROTECTED] wrote: > R(1763) malloc: *** vm_allocate(size=346857472) failed (error code=3) > R(1763) malloc: *** error: can't allocate region As the error says, you're obviously running out of contiguous wired memory (RAM). > Any ideas? My computer has 2gb o

Re: [Rd] Default arguments for setMethod() (PR#8021)

2005-07-20 Thread John Chambers
Quite right. There is code in the evaluator that copies default values from the method into the promise for a missing argument, when the method is being evalutated. The catch seems to be that there is no promise unless SOME default was included for the argument in the generic. So either we ne

Re: [Rd] S4 Dispatching

2005-07-20 Thread John Chambers
Paul Roebuck wrote: > Is it possible for S4 to (continue) dispatch to a class > created during dispatching? The code below doesn't work; > is this not possible or have I ommitted something? "doesn't work"? This is not helpful. Please show what you got and what you expected. The result below is

[Rd] Internationalization of the Rcmdr package

2005-07-20 Thread John Fox
Dear r-devel list members, I've prepared a version of the Rcmdr package that uses the new tools for internationalization and localization in R 2.1.x. For the present, this is the development version of the Rcmdr package (1.1-0), available at

Re: [Rd] WinXP GUI problem (PR#8018)

2005-07-20 Thread Prof Brian Ripley
Yes, the author of that part of the editor code forgot a call to setuserfilter, although he has one for opening scripts. I am about to add one. On Wed, 20 Jul 2005 [EMAIL PROTECTED] wrote: > Sampo Etelavuori wrote: > >> Lainaus Uwe Ligges <[EMAIL PROTECTED]>: >> >> >>> [EMAIL PROTECTED] wrote:

Re: [Rd] WinXP GUI problem (PR#8018)

2005-07-20 Thread ligges
Sampo Etelavuori wrote: > Lainaus Uwe Ligges <[EMAIL PROTECTED]>: > > >>[EMAIL PROTECTED] wrote: >> >> >>>Full_Name: Sampo Etelavuori >>>Version: 2.1.1 >>>OS: Windows XP >>>Submission from: (NULL) (130.188.8.10) >>> >>> >>>After exporting for example jpeg files using the GUI the GUI gives me a >

[Rd] Default arguments for setMethod() (PR#8021)

2005-07-20 Thread bgunter
Full_Name: Bert Gunter Version: 2.1.1 OS: Windows 2000 Submission from: (NULL) (192.12.78.250) There appears to be either a bug or documentation problem in setMethod/setGeneric with how default arguments are handled. The setMethod Help says: ** Method definitions can have default expressions

Re: [Rd] WinXP GUI problem (PR#8018)

2005-07-20 Thread ligges
[EMAIL PROTECTED] wrote: > Full_Name: Sampo Etelavuori > Version: 2.1.1 > OS: Windows XP > Submission from: (NULL) (130.188.8.10) > > > After exporting for example jpeg files using the GUI the GUI gives me a > default > option of saving even ordinary scripts in jpeg-format and doesn't let me >

Re: [Rd] (PR#8017) build of REventLoop package crashes with 2.1 due

2005-07-20 Thread ripley
Looking at the REventLoop_0.2-3 sources, the problem _is_ in the package. It include IOStuff.h (which includes Defn.h) without including config.h, which should always be included before R's internal headers. The package tries to get around this by defining some entries from config.h, but not en

Re: [Rd] (PR#8017) build of REventLoop package crashes with 2.1 due

2005-07-20 Thread ripley
In what way is this a bug in R? It looks like a bug in the package, and as Defn.h is not part of R's API any packge using it is `at risk' (and cannot be installed in a binary-only installation, or even an installed version of R). In particular, Defn,.h depends on config.h, and it seems you in