2

当我构建我的包时,我收到了这个错误。你能帮我知道避免这个错误的步骤是什么吗?

#' Square a number
#' 
#' Takes in any numeric value and squares it
#' @param x A value to be squared
#' @return The square of the input
#' @export
#' @example 
square <- function(x)
{
  return(x^2)
}

这是我按下构建时的错误:

==> roxygenize('.', roclets=c('rd', 'collate', 'namespace'))

* checking for changes ... ERROR

Error : example requires a value
4

1 回答 1

4

尝试以下操作:

#' @title
#' Square a number
#' 
#' @description
#' Takes in any numeric value and squares it
#'
#' @param x A value to be squared
#' @return The square of the input
#'
#' @export
#' @examples
#' square(2) # 2 squared
square <- function(x)
{
  return(x^2)
}

另外,请确保您使用最新的roxygen2软件包。

于 2014-05-01T09:42:13.403 回答