cited from Hadley's book Extended R: Environment
The environment refers to a function and never changes, even if the function moves to another environment.
The following code shows that environment f changed as environment e . So what does it mean that "the environment does not change"?
f = function() { } environment(f)
source share