Re: [Rd] Resolving functions using R's namespace mechanism can double runtime

2010-04-27 Thread Romain Francois
Le 27/04/10 22:16, Dominick Samperi a écrit : It appears that the runtime for an R script can more than double if a few references to a function foo() are replaced by more explict references of the form pkgname::foo(). It would probably help your question if you provide some benchmarks. a::b

Re: [Rd] Resolving functions using R's namespace mechanism can double runtime

2010-04-27 Thread Seth Falcon
On 4/27/10 1:16 PM, Dominick Samperi wrote: It appears that the runtime for an R script can more than double if a few references to a function foo() are replaced by more explict references of the form pkgname::foo(). The more explicit references are of course required when two loaded packages de

[Rd] Resolving functions using R's namespace mechanism can double runtime

2010-04-27 Thread Dominick Samperi
It appears that the runtime for an R script can more than double if a few references to a function foo() are replaced by more explict references of the form pkgname::foo(). The more explicit references are of course required when two loaded packages define the same function. I can understand why