Skip to content
Prev 44839 / 63424 Next

Incorporating single functions from other packages: rules and regulations?

On 13-01-13 3:44 PM, Tim Triche, Jr. wrote:
The NAMESPACE file is parsed as R code, but you should think of it as a 
bunch of declarations, not as something executable.  There's no 
importFrom() function.

If you want to do something similar at run-time, you could use

ranges <- IRanges::ranges

This creates a copy of the function you want in the current environment.


The closest thing I can find in base is
Probably the source code.

Duncan Murdoch