[R] Putting an object in to a function that calls the current function

Gabor Grothendieck ggrothendieck at gmail.com
Wed Jan 4 15:21:45 CET 2006


Check out:

http://finzi.psych.upenn.edu/R/Rhelp02a/archive/64929.html

On 1/4/06, Ales Ziberna <aleszib at gmail.com> wrote:
> Hello!
>
> I would like to put an object in to a function that calls the current
> function.
>
> I thought the answer will be clear to me after reading the help files:
> ?assign
> ?sys.parent
>
> However it is not.
> Here is an example I thought should work, however it dose not exactly:
>
> f<-function(){s();print(a)}
> s<-function()assign(x="a",value="ok",pos=sys.parent())
> f() #I want to get "ok"
> a #I do not want "a" in global enviorment, so here I should get
> #Error: Object "a" not found
> ff<-function()f() #here I also want to get "ok" - it should not matter if
> the parent fuction has any parents
>
> Thank you in advance for suggestions!
>
> Ales Ziberna
>
> ______________________________________________
> R-help at stat.math.ethz.ch mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html
>




More information about the R-help mailing list