我收到了一条神秘的纸条:
,谢谢,
如果您的包中有描述方法的引用,请在表单作者(年份)doi:.中的描述文件的description字段中添加这些引用。作者(年份)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
发布于 2019-11-13 17:34:51
如果您正在使用RStudio创建您的包,您能按照此检查吗?http://r-pkgs.had.co.nz/check.html
devtools::check()
然后按照提示,它可能会帮助您找到问题。
https://stackoverflow.com/questions/58840531
复制相似问题