Re: [R] How to call a function defined within another function

2011-10-20 Thread Sébastien Bihorel
Thanks for the hack Gabor! That works just fine... (I guess until the step.gam function is re-structured :D) On Thu, Oct 20, 2011 at 9:20 AM, Gabor Grothendieck wrote: > On Wed, Oct 19, 2011 at 4:08 PM, Sébastien Bihorel > wrote: > > Dear R-users, > > > > I would need some advices on the proper

Re: [R] How to call a function defined within another function

2011-10-20 Thread Gabor Grothendieck
On Wed, Oct 19, 2011 at 4:08 PM, Sébastien Bihorel wrote: > Dear R-users, > > I would need some advices on the proper way to call a particular function. > This function is called scope.char and it is embedded in the step.gam > function from the gam package. I am trying to call scope.char directly

Re: [R] How to call a function defined within another function

2011-10-20 Thread Sébastien Bihorel
Thanks Uwe for reply. The license is actually a problem: my package is distributed with a LGPL3 license, which is incompatible with GPL-2. I'll try to find a work-around. Sebastien 2011/10/20 Uwe Ligges > > > On 19.10.2011 22:08, Sébastien Bihorel wrote: > >> Dear R-users, >> >> I would nee

Re: [R] How to call a function defined within another function

2011-10-20 Thread Uwe Ligges
On 19.10.2011 22:08, Sébastien Bihorel wrote: Dear R-users, I would need some advices on the proper way to call a particular function. This function is called scope.char and it is embedded in the step.gam function from the gam package. I am trying to call scope.char directly in a script but I

[R] How to call a function defined within another function

2011-10-19 Thread Sébastien Bihorel
Dear R-users, I would need some advices on the proper way to call a particular function. This function is called scope.char and it is embedded in the step.gam function from the gam package. I am trying to call scope.char directly in a script but I did not find the proper way to do so. Is this even