我收到了构建警告:
Undocumented S4 methods:
generic 'plot' and siglist 'cd.fit,missing'
并无法弄清楚未记录的内容。以下是方法文档的内容:
##' Something here
##' @param a bunch of paramter defs
##' @aliases plot,cd.fit,cd.fit-method
##' @rdname plot-methods
##' @importFrom graphics plot
##' @exportMethod plot
setMethod("plot",
signature(x = "cd.fit",y="missing"),
function(x,y,col.main=rgb(230, 85, 13,maxColorValue=255),...){
..code here ..
})
我已经查看了其他一些SO帖子,这些帖子提出了类似的问题,但似乎无法弄清楚为什么这有任何不同,除非剧情的通用签名只有两个元素,我正在添加额外内容。有什么想法/建议吗?