Re: [Rd] reduce limit number of arguments in methods:::cbind

2008-12-04 Thread Yohan Chalabi
"JR" == "Jeff Ryan" <[EMAIL PROTECTED]> on Wed, 3 Dec 2008 15:22:24 -0600 JR> My 2c: JR> JR> The real issue for me is that this approach to handling S4 objects by JR> altering R functions for the worse is incorrect. (by calling JR> bind_activation) JR> JR> m <- mat

Re: [Rd] reduce limit number of arguments in methods:::cbind

2008-12-03 Thread Jeff Ryan
My 2c: The real issue for me is that this approach to handling S4 objects by altering R functions for the worse is incorrect. (by calling bind_activation) m <- matrix(1:2e6L) # 2 million obs > system.time(cbind(m,m)) user system elapsed 0.027 0.017 0.044 > methods:::bind_activation(TRU