(This article was first published on R snippets, and kindly contributed to R-bloggers)
By design GNU R uses lexical scoping. Fortunately it allows for at least two ways to simulate dynamic scoping.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.
To leave a comment for the author, please follow the link and comment on his blog: R snippets.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).