不要通过roxygen2在构建R包中显示功能帮助文档

时间:2013-04-09 03:26:24

标签: r devtools roxygen2

我正在使用devtools来构建R包,并且有些功能并非旨在让最终用户可见。但是,由于这些函数涉及通过.Call调用C代码,因此我必须在函数上方写@useDynLib以自动生成.Rd文件。这样,当我构建软件包时,即使我没有为这些函数包含@export,它们仍会出现在帮助文档中......有没有办法抑制这些函数即使他们有记录?谢谢!

3 个答案:

答案 0 :(得分:24)

根据Hadley的评论,使用@keywords internal将使该功能对最终用户不可见。可以在devtools的维基页面中找到详细信息here

答案 1 :(得分:9)

在接受的答案中链接的维基不再讨论@keywords internal(截至2016年4月)。如果它有助于某人看到一个例子:

# multiplyBy3
#' This is an example of an internal function called \code{multiplyBy3()}
#'
#' Sometimes you want internal functions as part of an R Package built with 
#' RStudio and roxygen2, but you don't want .Rd files created for them
#' or to have them be visible in the help document following the build process
#' 
#' @keywords internal
#'
#' @param base_num The number to multiply by three 
#'
#' @import jsonlite
#'
#' @return Returns a numeric vector
#'
multiplyBy3 <- function(base_number) {
  stopifnot(is.numeric(base_number))
  return(base_number * 3)
}

关键位:不包括@export并且包含@keywords internal

答案 2 :(得分:4)

对我来说,@keywords internal不起作用(roxygen2 6.1.1)。我可以在我的roxygen注释中使用以下命令来达到所需的结果:

@noRd