Use dependencies in R packages through library() / Description file
问题 I'm writing an R package that has several dependencies of other packages, some of them are available in CRAN and other ones are homemade. According to the help, library("my_package") will load the namespace of the package once I have previously installed it, i.e, install.package("my_package") . Nevertheless, once I have installed the package I am able to use all the functions of the installed but not loaded package through my_package::my_function() , so if my package has dependencies, beside