CRAN 拒绝基于“描述包中方法的引用”

问题描述 投票:0回答:2

我收到了这条神秘的 CRAN 消息:

谢谢,

如果您的包中有描述方法的参考资料,请 将这些添加到您的 DESCRIPTION 文件的描述字段中 形成作者(年)doi:...作者(年)arXiv:...作者(年, ISBN:...) 或者如果这些不可用:https:... 之后没有空格 'doi:'、'arXiv:'、'https:' 和用于自动链接的尖括号。

请修复并重新提交,并记录更改的内容 投稿意见

我不明白,描述文件看起来很标准,在这里:

Package: inops
Title: Infix Operators for Detection, Subsetting and Replacement
Version: 0.0.1
Authors@R: c(
    person("Antoine", "Fabri", email = "***@gmail.com", role = c("aut", "cre")),
    person("Karolis", "Koncevičius", email = "***@gmail.com", role = "aut")
    )
Description: Infix operators to detect, subset, and replace the elements matched by a given condition.
  The functions have several variants of operator types, including subsets, ranges, regular expressions and others.
  Implemented operators work on vectors, matrices, and lists.
Depends: R (>= 3.1.0)
License: GPL-3
Encoding: UTF-8
LazyData: true
RoxygenNote: 6.1.1
Suggests:
    testthat (>= 2.1.0),
    purrr,
    knitr,
    rmarkdown,
    dplyr,
    nycflights13
URL: https://github.com/moodymudskipper/inops
BugReports: https://github.com/moodymudskipper/inops/issues
VignetteBuilder: knitr
Roxygen: list(markdown = TRUE)

似乎与要点 5 到 7 有关,但我不明白它与这里有什么关系:https://cran.r-project.org/web/packages/submission_checklist.html

知道这里对我有什么期望吗?

回购如果有帮助:https://github.com/moodymudskipper/inops

r cran
2个回答
0
投票

回复提示引用学术出版物,如果你的包没有,请按原样重新提交并在评论中说明(如果你使用 devtools 发布,则在 CRAN-COMMENTS.md 文件中),我会包括他们的初始那里的回应以及上下文。

CRAN 维护者并不完美,我们可能会不时收到奇怪的消息,这可能是他们部分的错误校准复制和粘贴,不要让它吓到你,也不要反对他们。


-2
投票

如果你正在使用 RStudio 创建你的包,你能遵循这个检查吗? http://r-pkgs.had.co.nz/check.html

开发工具::检查()

并按照提示进行操作,这可能会帮助您找到问题

© www.soinside.com 2019 - 2024. All rights reserved.