[R] get the enclosing function name

Gabor Grothendieck ggrothendieck at gmail.com
Fri Dec 11 14:57:15 CET 2009


Try placing this in your function:

Name <- match.call()[[1]]

On Fri, Dec 11, 2009 at 8:50 AM, Hao Cen <hcen at andrew.cmu.edu> wrote:
> Hi,
>
> Is there a way to get the enclosing function name within a function?
>
> For example, I would like to have a function getEnclosingFunctionName().
> It works like below
>
> f = function(){
>  print(getEnclosingFunctionName())
>
> }
>
>
> f()  # will print  "f"
>
>
> Thanks
>
> Jeff
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>




More information about the R-help mailing list