我正在写一个包,但一个持续的R CMD check
警告阻止我完成包并将其发布到 CRAN。我roxygen2
用于内联文档,尽管这可能不是错误的根本原因。
如果您知道如何删除此警告,我很可能会想出一种使用roxygen2
.
如何 Functions/methods with usage in documentation object ... but not in code
从包裹检查中删除警告?
R CMD check
警告:
* checking for code/documentation mismatches ... WARNING
Functions/methods with usage in documentation object 'names<-' but not in code:
names<-
功能和roxygen
文档:
#' Updates names and variable.labels attribute of surveydata.
#'
#' @name names<-
#' @rdname names
#' @aliases names<- names<-.surveydata
#' @param x surveydata object
#' @param value New names
#' @method names<- surveydata
#' @usage names(x) <- value
"names<-.surveydata" <- function(x, value){
invisible(NULL)
}
生成的.rd
文档文件:
\name{names<-}
\alias{names<-}
\alias{names<-.surveydata}
\title{Updates names and variable.labels attribute of surveydata.}
\usage{
names(x) <- value
}
\arguments{
\item{x}{surveydata object}
\item{value}{New names}
}
\description{
Updates names and variable.labels attribute of
surveydata.
}
我已经将我的文档与基础 R 中的文档进行了交叉检查names<-
,看起来是相同的:
\title{ The Names of an Object}
\name{names}
\alias{names}
\alias{names.default}
\alias{names<-}
\alias{names<-.default}
\keyword{attribute}
\description{Functions to get or set the names of an object.}
相关问题(但我已经实施了这个建议,但仍然没有运气):
我哪里错了?如何从包裹检查中删除此警告?