vpc icon indicating copy to clipboard operation
vpc copied to clipboard

get rid of as many dependencies as possible (convert to imports)

Open dpastoor opened this issue 11 years ago • 2 comments

See comment here on using Imports instead of depends

tl;dr package plays nicer and reduces chance of namespace conflicts (especially dplyr/plyr)

check dplyr description and source code or ggplot as an example of how can handle functions from other packages, etc. Key is using :: in front of all function calls.

So internally we'll want to convert df %>% summarize(...) to df %>% dplyr::summarize

dpastoor avatar Oct 22 '14 19:10 dpastoor

OK, wasn't aware of this issue. Will update

ronkeizer avatar Oct 22 '14 23:10 ronkeizer

This seems to be complete, and I think it can be closed.

billdenney avatar Apr 13 '21 17:04 billdenney