Re: [Rd] Library not loaded: /usr/local/lib/libquadmath.0.dylib

2014-09-02 Thread Prof Brian Ripley
Wrong list: Mac-specific question to R-sig-mac please. On 03/09/2014 06:35, Xiao He wrote: Hi all, I tried to load a package which includes a shared object on one of my Macs, and I got an error message below, which suggests that the file " libquadmath.0.dylib" is missing in the /usr/local/lib f

Re: [Rd] log(i, base=i) not giving 1

2014-09-02 Thread Prof Brian Ripley
On 02/09/2014 22:43, Ben Bolker wrote: On 14-09-02 08:48 AM, Martin Maechler wrote: peter dalgaard on Tue, 2 Sep 2014 13:43:21 +0200 writes: > Impressive. Never ceases to amaze me what computers can do these days. ;-) Indeed, > It's even more impressive given that we have

[Rd] Library not loaded: /usr/local/lib/libquadmath.0.dylib

2014-09-02 Thread Xiao He
Hi all, I tried to load a package which includes a shared object on one of my Macs, and I got an error message below, which suggests that the file " libquadmath.0.dylib" is missing in the /usr/local/lib folder. On my other Mac however, I have no problem loading the package, and the file " libquadm

Re: [Rd] log(i, base=i) not giving 1

2014-09-02 Thread Ben Bolker
On 14-09-02 08:48 AM, Martin Maechler wrote: >> peter dalgaard >> on Tue, 2 Sep 2014 13:43:21 +0200 writes: > > > Impressive. Never ceases to amaze me what computers can do these days. > ;-) > > Indeed, > > > It's even more impressive given that we have > > > > static

Re: [Rd] ggplot2/plyr interaction with latest R-devel?

2014-09-02 Thread peter dalgaard
On 02 Sep 2014, at 14:21 , Prof Brian Ripley wrote: > I suspect PD knows (or has known) why, but for the sake of those who are not > much bitten by ix86 compilers > > It's the curse of extended-precision arithmetic (and not enough registers). > It does Let's say that he suspected

Re: [Rd] log(i, base=i) not giving 1

2014-09-02 Thread Martin Maechler
> peter dalgaard > on Tue, 2 Sep 2014 13:43:21 +0200 writes: > Impressive. Never ceases to amaze me what computers can do these days. ;-) Indeed, > It's even more impressive given that we have > static double logbase(double x, double base) > { > #ifdef HAVE_LOG

Re: [Rd] ggplot2/plyr interaction with latest R-devel?

2014-09-02 Thread Prof Brian Ripley
On 02/09/2014 12:43, peter dalgaard wrote: Impressive. Never ceases to amaze me what computers can do these days. ;-) It's even more impressive given that we have static double logbase(double x, double base) { #ifdef HAVE_LOG10 if(base == 10) return x > 0 ? log10(x) : x < 0 ? R_NaN : R_Neg

Re: [Rd] ggplot2/plyr interaction with latest R-devel?

2014-09-02 Thread peter dalgaard
Impressive. Never ceases to amaze me what computers can do these days. ;-) It's even more impressive given that we have static double logbase(double x, double base) { #ifdef HAVE_LOG10 if(base == 10) return x > 0 ? log10(x) : x < 0 ? R_NaN : R_NegInf; #endif #ifdef HAVE_LOG2 if(base == 2)

[Rd] unexpected behavior of <<- in nlm (lazy?)

2014-09-02 Thread Thomas Petzoldt
Hi, while working with closures in deSolve we have found unexpected behavior in R 3.1.0 and R 3.1.1 and R devel, while it was still as expected in R 3.0.3. This behavior occurs also in several functions of other packages like nls.lm from minpack.lm and even nlm in base, while some other functions