search for: bar_driv

Displaying 1 result from an estimated 1 matches for "bar_driv".

Did you mean: bar_dri
2007 Nov 23
1
Problem with environments
...The attach function will accept a list. However, I don't seem to be able to create the list properly. (Or should I use a frame instead?) Anyway, here is the output, starting with the load operation; ---------------------------------------------------------------------------- > # function bar_driver > > free_driver <- function (){ + i <- 25 + attach_list <- list (i = i) + print1 ("attach_list = ", attach_list) + attach (attach_list) + free_test () + + } > free_test <- function (){ + print ("entering free_test") + print1 ("i") + return () + +...