Closed antoine-sachet closed 5 years ago
You should use Imports instead of Depends in the DESCRIPTION. Otherwise you create conflicts, especially since plyr conflicts with a lot of packages.
Imports
Depends
plyr
For example, using your package broke my app because count was suddenly taken from plyr instead of dplyr.
count
dplyr
BTW you have to use Imports if you intend to submit to CRAN.
Done
Sorry guys. I have been inactive.
You should use
Imports
instead ofDepends
in the DESCRIPTION. Otherwise you create conflicts, especially sinceplyr
conflicts with a lot of packages.For example, using your package broke my app because
count
was suddenly taken fromplyr
instead ofdplyr
.BTW you have to use
Imports
if you intend to submit to CRAN.