我收到了这个神秘的CRAN消息:
谢谢
如果您的包装中有描述方法的参考文献,请 将这些添加到您的DESCRIPTION文件的描述字段中 形式作者(年份)doi:...作者(年份)arXiv:...作者(年份, ISBN:...)或如果这些不可用:https:...后没有空格 自动链接的“ doi:”,“ arXiv:”,“ https:”和尖括号。
请修正并重新提交,并记录下 提交评论。
我不明白,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)
似乎与项目符号要点5到7有关,但我在这里看不到它们的相关性:https://cran.r-project.org/web/packages/submission_checklist.html
你知道我在这里期望什么吗?
回购协议(如果有帮助的话):https://github.com/moodymudskipper/inops
答案 0 :(得分:0)
如果您使用RStudio创建软件包,可以遵循此检查吗? http://r-pkgs.had.co.nz/check.html
devtools :: check()
并按照提示进行操作,这可能会帮助您找到问题。