R包NAMESPACE

时间:2018-03-24 09:58:44

标签: r namespaces package documentation drc

我正在记录一个R函数。我的R文件的结构如下:

#'Report the modeling result
#'
#' @param higher_rank A string.
#' @param lower_rank A string.
#' @param method A string.
#' @return modeling result of the accumulation of \code{lower_rank} of a \code{higher_rank} by \code{method}
#' @import data.table
#' @import ggplot2
#' @import drc drm
#' @importFrom plotly ggplotly
#'@examples
#'\dontrun{
#'modelit("adult", "child", "logistic")
#'}
#'@export

modelit <- function(higher_rank, lower_rank, method) {

...
...

model.drm <- drc::drm(lower_rank ~ higher_rank, data = data.frame(adults = adults, children = children), fct = MM.2())

...
...

}

我跑步时

>devtools::document()

弹出错误:

Warning messages:
1: In loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘drm’
2: character(0) 
3: character(0) 
4: In loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) :
there is no package called ‘drm’

由于我没有包drm而是drc,我很好奇这个警告来自哪里。在NAMESPACE中,我确实看到了

importFrom(drm,drc)

我非常感谢你的帮助。谢谢。

1 个答案:

答案 0 :(得分:2)

您使用了标记@import而不是@importFrom。因此,您要求从drm

导入包drm而不是函数drc

顺便说一句,您不需要drm的任何导入标记,因为您通过命名空间drc::drm调用了该函数