Re: [Rd] bindingIsLocked returns illogical logical

2006-05-15 Thread Prof Brian Ripley
On Sun, 14 May 2006, Seth Falcon wrote: > Martin Morgan <[EMAIL PROTECTED]> writes: > >> bindingIsLocked applied to a locked binding returns a 'logical' that >> is niether true nor false. > > Is this a philosophical question? :-) But there is such a value defined for R logical vectors. > Here's

Re: [Rd] Error Compiling RMySQL in Fedora Core 5 86x64

2006-05-15 Thread Hin-Tak Leung
on fedora core 5, you'll need to install the mysql-devel package. the "mysql.h" header is in /usr/include/mysql/ . So you need: export PKG_CPPFLAGS="-I/usr/include/mysql" export PKG_LIBS="-L/usr/lib64/mysql -lmysqlclient" Juan Santiago Ramseyer wrote: > in download and automatic install the RMySQ

[Rd] Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, while plenty of memory available (PR#8861)

2006-05-15 Thread m . vroonhoven
Dear R developers, We have a big SGI Origin computation server with 32 cpu's and 64 Gb of RAM. In R 2.0.0 we could run large jobs, allocating 8 Gb of RAM was not a problem, for example by running: > v1 <- seq(1,2^29) > v2 <- seq(1,2^29) > v3 <- seq(1,2^29) > v4 <- seq(1,2^29) This yields a

Re: [Rd] Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, while plenty of memory available (PR#8861)

2006-05-15 Thread Thomas Lumley
On Mon, 15 May 2006, [EMAIL PROTECTED] wrote: > Dear R developers, > > We have a big SGI Origin computation server with 32 cpu's and 64 Gb of > RAM. In R 2.0.0 we could run large jobs, allocating 8 Gb of RAM was not > a problem, for example by running: > > v1 <- seq(1,2^29) > > v2 <- seq(1,2^29)

Re: [Rd] Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, (PR#8862)

2006-05-15 Thread tlumley
On Mon, 15 May 2006, [EMAIL PROTECTED] wrote: > Dear R developers, > > We have a big SGI Origin computation server with 32 cpu's and 64 Gb of > RAM. In R 2.0.0 we could run large jobs, allocating 8 Gb of RAM was not > a problem, for example by running: > > v1 <- seq(1,2^29) > > v2 <- seq(1,2^29)

Re: [Rd] (PR#8861) Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, while plenty of memory available

2006-05-15 Thread Prof Brian Ripley
(Your reply to R-bugs started a new report, so I am aiming to re-file it.) On Mon, 15 May 2006, Thomas Lumley wrote: > On Mon, 15 May 2006, [EMAIL PROTECTED] wrote: > >> Dear R developers, >> >> We have a big SGI Origin computation server with 32 cpu's and 64 Gb of >> RAM. In R 2.0.0 we could run

Re: [Rd] bindingIsLocked returns illogical logical

2006-05-15 Thread Seth Falcon
Prof Brian Ripley <[EMAIL PROTECTED]> writes: > On Sun, 14 May 2006, Seth Falcon wrote: >> I wonder if ScalarLogical should force 0/1: > > Not a good idea: what about the third value, NA? Indeed, I should have been sleeping (or perhaps I was already :-) Is it enough to check for NA_LOGICAL or sh

Re: [Rd] bindingIsLocked returns illogical logical

2006-05-15 Thread Prof Brian Ripley
On Mon, 15 May 2006, Seth Falcon wrote: > Prof Brian Ripley <[EMAIL PROTECTED]> writes: > >> On Sun, 14 May 2006, Seth Falcon wrote: >>> I wonder if ScalarLogical should force 0/1: >> >> Not a good idea: what about the third value, NA? > > Indeed, I should have been sleeping (or perhaps I was alre

Re: [Rd] (PR#8861) Memory allocation fails in R 2.2.1 and R 2.3.0 on SGI Irix, while plenty of memory available

2006-05-15 Thread Mirjam van Vroonhoven
Prof Brian Ripley wrote on Mon, May 15, 2006 at 04:09:38PM +0100: > >You can tell if you have a 64bit build of R by looking at > >.Machine$sizeof.pointer in R, which should be 8. > > And if this is a 32-bit build, it is working as expected given the limited > address space. It is a 32 bit build.

Re: [Rd] bindingIsLocked returns illogical logical

2006-05-15 Thread Seth Falcon
Prof Brian Ripley <[EMAIL PROTECTED]> writes: > On Mon, 15 May 2006, Seth Falcon wrote: >> Is it enough to check for NA_LOGICAL or should all NA_* values be >> checked for? Is there an easier/better way to do this sort of check? > > NA_LOGICAL and NA_INTEGER are the same value, and only NA_LOGICA

[Rd] Truncated labels in hist (PR#8864)

2006-05-15 Thread pinard
Hi, people. Executing the following command: hist(rpois(100,5), labels=TRUE) yields a graphic in which some labels are truncated (on an X11 device). The truncated labels are those over the highest bars. The hist function should ideally manage enough room for the labels, automatically. (Speci

[Rd] R CMD check does not remove all S4 methods defined in examples

2006-05-15 Thread Martin Morgan
Methods for generics created in '\example{}' sections of Rd files are not entirely removed at the end of the example. This is because the methods package caches these (in the environment returned by getGeneric("initialize"), for the example below) as well as storing their definition in the global e

Re: [Rd] Truncated labels in hist (PR#8864)

2006-05-15 Thread Duncan Murdoch
On 5/15/2006 7:35 PM, [EMAIL PROTECTED] wrote: > Hi, people. Executing the following command: > >hist(rpois(100,5), labels=TRUE) > > yields a graphic in which some labels are truncated (on an X11 device). > The truncated labels are those over the highest bars. The hist function > should ide