使用roxygen2记录函数时,可以将示例放在单独的文件中。
见这里:http://r-pkgs.had.co.nz/man.html "您可以将它们放在单独的文件中,并使用@example path / relative / to / packge / root将它们插入到文档中,而不是直接在文档中包含示例。"
在这里:http://roxygen.org/roxygen2-manual.pdf
e.g。
#' Add together two numbers.
#'
#' @param x A number.
#' @param y A number.
#' @return The sum of \code{x} and \code{y}.
#' @example /path/to/example/add.R
add <- function(x, y) {
x + y
}
我的问题是:应该使用什么路径来存储示例R文件?
答案 0 :(得分:4)
您的roxygen中使用的示例的适当位置是:
inst/examples/
那么氧气线应该是:
#' @example inst/examples/add.R
这是好习惯吗?我认为是,因为: