ronkeizer / vpc

R library to create visual predictive checks (VPC)
Other
36 stars 20 forks source link

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

Closed dpastoor closed 5 months ago

dpastoor commented 10 years ago

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

ronkeizer commented 10 years ago

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

billdenney commented 3 years ago

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