gpt4 book ai didi

未导出的 Rd

转载 作者:行者123 更新时间:2023-12-02 00:07:09 27 4
gpt4 key购买 nike

我正在记录一个内部的、非导出的函数。 roxygen2 正在创建一个 Rd 文件,即使文档中没有 @export 标记。 roxygen2 为以下文档创建了一个 Rd 文件。我错过了什么?

    #' Check validity of a
#' @param a A logical value
arg_check_a = function(a) {
if (!is.logical(a)) {
stop("a must be a logical value")
}
}

最佳答案

使用@noRd .

Use the @noRd tag to prevent .Rd files from being generated.

我也很喜欢将它们标记为 #' @keywords internal,这(根据 vignettes ):

@keywords internal is useful because it removes the function from the documentation index; it’s useful for functions aimed primarily at other developers, not typical users of the package.

(大部分来源于https://github.com/r-lib/roxygen2/issues/684)

关于未导出的 Rd,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60217720/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com