Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
dpastoor opened this issue Oct 22, 2014 · 2 comments
Open

Comments

@dpastoor
Copy link
Collaborator

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
Copy link
Owner

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

@billdenney
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants