Would anyone be able to point me towards a good resource for understanding package calls from within a package?
Up to this point I've been working in R projects and calling the library() command to load other packages into my data analysis projects. I'm trying to switch to a package environment (mainly to access the testthat package) and I understand that from within a package it is preferred to use :: to call a package each time a function is used (e.g. dplyr::filter()). I find this makes code very difficult to read and to write. I'm unlikely to ever need to install and use my package as an actual package i.e. call it from another project using library(mypackage) so is there any reason I should not be using library() in my scripts?
Thanks for any help!
Dave