Skip to content
Prev 6032 / 12125 Next

[R-pkg-devel] Dependency needs to be loaded manually even its specified in the package

On 18 September 2020 at 18:38, Nuria Perez-Zanon wrote:
| I am maintaining a package call CSTools which is aimed for 
| post-processing climate simulations.
[...]
|  ??? library(CSTools)
|  ??? library(qmap)

You never use library() in a package. Rather, you declare dependency
relationsships via DESCRIPTION (and likely NAMESPACE). See "Writing R
Extensions" for all the details.

Dirk