Displaying 1 result from an estimated 1 matches for "check_packages_used_in_examples".
2010 Oct 10
1
Query about .check_packages_used_in_examples
...that's why ks is listed in depends
@item
All packages that are needed to successfully run @code{R CMD
check} on the package must be listed in one of @samp{Depends}
or @samp{Suggests} or @samp{Imports}. [...]
which seems to be adhered to, since ks is in the depends.
But upon digging into .check_packages_used_in_examples in QC.R in
package tools, I have the impression that packages loaded in examples
via library() or require() are only checked against packages listed in
Suggests, Enhances and Depends, the package's own name and the standard
packages, but not against those listed in Imports. Thus, I believe
the...