如何在构建包时使用 devtools 创建文档?
How to create documentation with devtools while building a package?
好吧,我想在我的包项目中创建一个文档,但我收到了这个错误:
library(devtools)
> devtools::document()
Updating varbinq documentation
Loading varbinq
Error: contains a blank line
为什么我的函数中没有空行!它看起来像这样:
#' function which do something
#'
#' @param x a value of something
#' @return a value of something2
#' @examples
#' f(2)
f <- function(x){
x+2
}
可能是其他功能的原因?
当包 DESCRIPTION 文件中有一个空行时,可能会发生这种情况。
好吧,我想在我的包项目中创建一个文档,但我收到了这个错误:
library(devtools)
> devtools::document()
Updating varbinq documentation
Loading varbinq
Error: contains a blank line
为什么我的函数中没有空行!它看起来像这样:
#' function which do something
#'
#' @param x a value of something
#' @return a value of something2
#' @examples
#' f(2)
f <- function(x){
x+2
}
可能是其他功能的原因?
当包 DESCRIPTION 文件中有一个空行时,可能会发生这种情况。