Let us start with the example code and next analyze it:
x <- "global"
f1 <- function() cat("f1:", x, "\n")
f2 <- function() cat("f2:", evalq(x, parent.frame()), "\n")
fun <- function() {
x <- "f1"
f1()
f2()
environment(f1) <- environment()
f1()
}
> f1()
f1: global
> f2()
f2: global
However if they are called from within a function the results will differ:
> fun()
f1: global
f2: f1
f1: f1
We can see that f1 selects a variable from its lexical scope (global environment) and f2 from calling function fun.
An interesting thing is that function's f1 lexical scope can be changed by assigning new environment to function f1 within function fun. This forces fun environment into lexical search path of f1 and is another way to simulate one level dynamic scoping.
The second method is useful when a function we want to call is defined externally (for example within a package) and we are unable to change it. The drawback is that called function may stop working because within its internals it might call functions or seek variables that are undefined within changed environment search path - so one has to be cautious with it.
In my next post I plan show an application of this idea on some practical example.
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.