Package imports error on devtools::check()
问题 I have a package that contains the following package Imports in the DESCRIPTION file: Imports: lubridate, assertthat, R6, stringr I don't import these into my package's NAMESPACE using an import(pkgname) or importFrom(pkgname, fn) commands. Rather I refer to these package's functions in my R code using a fully qualified call. Based on my reading of R-ext, this is permissible: The ‘Imports’ field lists packages whose namespaces are imported from (as specified in the NAMESPACE file) but which