I am working on an internal package. Because I use dplyr a lot it and it is for my own use only, it seems sensible to import it. I added the roxygen tag #' import dplyr to my code and after running devtools::document() the tag import(dplyr) indeed was added to the NAMESPACE file.
I expected that after running devtools::load_all() the functions from dplyr would now be available. However, this is not the case. Functions calling dplyr functions break with "could not find ..." error message. What am I overlooking or misunderstanding? Thanks!