Hi R Gurus:
Here is some code that I was experimenting with, please:
> f1 <- function(x) {
+ e1 <- new.env(parent=.GlobalEnv)
+ environment(e1)
+ print(environment())
+ return(mean(x))
+ }
> f1(1:15)
<environment: 0x02525444>
[1] 8
>
My question: why isn't the environment within the function set to e1, please?
Thanks,
Edna Bell
______________________________________________
[email protected] 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.