Tag: rxygen2

如何不运行使用roxygen2的例子?

我现在正在编写一个地理编码function ,它依赖于Bing地图密钥。 显然,我宁愿不发表我的,例子失败,没有一个。 如何包含用户手动运行的示例,但在R CMD check过程中没有执行?

预处理或后处理roxygen片段

有没有一些机制可以用来转换roxygen所看到的意见,最好是在roxygen-> rd转换之前呢? 例如,假设我有: #' My function. Does stuff with numbers. #' #' This takes an input `x` and does something with it. #' @param xa number. myFunction <- function (x) { } 现在,假设我想在roxygenparsing它之前做一些转换,例如用\code{}replace反引号中的所有事例。 即: preprocess <- function (txt) { gsub('`([^ ]+)`', '\\\\code{\\1}', txt) } # cat(preprocess('Takes an input `x` and does something with it'.)) # […]