Displaying 1 result from an estimated 1 matches for "base_parse".
2011 Aug 23
2
Increase transparency: suggestion on how to avoid namespaces and/or unnecessary overwrites of existing functions
...ENVIR=envir
)
))
return(obj.mod)
}))
names(out) <- NULL
# /
return(out)
})
names(out) <- srch.list
return(out)
}
# +++++
funs <- processNamespaces(do.verbose=TRUE)
ls(.NS)
ls(.NS$base)
.NS$base$base_parse
res.a <- microbenchmark(eval(parse(text="a <- 5")))
res.b <- microbenchmark(eval(.NS$base$base_parse(text="a <- 5")))
median(res.a$time)/median(res.b$time)
#+++++
funs <- processNamespaces(do.global=TRUE, do.verbose=TRUE)
base_parse
res.a <- microbenchmark(...