有人可以向我解释一下这些不同的环境功能具体做什么吗?即哪一个返回什么帧?阅读文档后,我感到非常困惑(http://stat.ethz.ch/R-manual/R-patched/library/base/html/sys.parent.html)
让我们对这个问题提出一些结构:
x = 1; y=2; z=3;
f = function() { ls(); ls(envir=sys.frame());}
#this first prints the contents of this function and then of the global environment
我试图了解如何访问调用函数的环境并了解您所处的环境。例如g
可以调用f
:
g = function() { somevar=1; f() }
如果我想获取 的内容g
,我该怎么做?框架和环境有什么区别?