简体   繁体   English

CRAN 拒绝基于“描述包中方法的参考”

[英]CRAN rejection based on “references describing the methods in your package”

I received this cryptic CRAN message:我收到了这条神秘的 CRAN 消息:

Thanks,谢谢,

If there are references describing the methods in your package, please add these in the description field of your DESCRIPTION file in the form authors (year) doi:... authors (year) arXiv:... authors (year, ISBN:...) or if those are not available: https:... with no space after 'doi:', 'arXiv:', 'https:' and angle brackets for auto-linking.如果您的 package 中有描述方法的参考资料,请在您的说明文件的描述字段中添加这些参考资料,格式为作者(年份)doi:...作者(年份)arXiv:...作者(年份,ISBN:。 ..) 或者如果这些不可用:https:... 在“doi:”、“arXiv:”、“https:”和用于自动链接的尖括号之后没有空格。

Please fix and resubmit, and document what was changed in the submission comments.请修复并重新提交,并在提交评论中记录更改的内容。

I don't get it, the DESCRIPTION file seems quite standard, here it is:我不明白,DESCRIPTION文件似乎很标准,这里是:

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)

Seems related to bullet points 5 to 7 but I don't see how it's relevant here: https://cran.r-project.org/web/packages/submission_checklist.html似乎与第 5 到第 7 点有关,但我看不出它在这里有何相关性: https://cran.r-project.org/web/packages/submission_checklist.html

Any idea what's expected from me here?知道我在这里有什么期望吗?

The repo if it helps: https://github.com/moodymudskipper/inops有帮助的回购: https://github.com/moodymudskipper/inops

If you are using RStudio to create your package, can you follow this checking?如果您使用 RStudio 创建您的 package,您可以按照此检查吗? http://r-pkgs.had.co.nz/check.html http://r-pkgs.had.co.nz/check.html

devtools::check()开发工具::检查()

And follow the prompt, it might help you find the problem.并按照提示进行操作,它可能会帮助您找到问题所在。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM