If I write an R package, I can use importFrom(plyr,colwise) to selectively import the colwise() function into my namespace. If I run the code interactively on the command line, is there a way to do the same?
One rude decision is to download the package, but not import anything, and then write a bunch of foo <- pkg::foo import assignments manually, but I donβt see how easy it is to download without import in the first place.
source share