从R 3.1.0开始,我得到以下R检查:
* checking package dependencies ... NOTE
No repository set, so cyclic dependency check skipped
我尝试了这个建议:https://twitter.com/phylorich/status/431911660698083328
不行。我将行options(repos="http://cran.rstudio.com/")
放在包根目录中的.Rprofile中。仍然得到注意。
Writing R Extensions州的第1.3.1节:
Some Windows users may need to set environment variable R_WIN_NO_JUNCTIONS
to a non-empty value. The test of cyclic declarations33in DESCRIPTION
files needs repositories (including CRAN) set: do this in ~/.Rprofile.
这可能是set environment variable R_WIN_NO_JUNCTIONS
的结果吗?如果是这样我怎么能这样做呢?注释的任何其他可能原因或建议的修复?
答案 0 :(得分:21)
DESCRIPTION文件中的循环声明测试需要存储库(包括CRAN)集:在〜/ .Rprofile中执行此操作,例如
options(repos = c(CRAN="http://cran.r-project.org"))
<强>推荐强>
用户应仔细检查他的.Rprofile是否在他的家中并且是否包含上述选项。
# in R session (any platform)
# where is my profile?
file.path(Sys.glob("~"),".Rprofile")
# is it there?
file.exists(file.path(Sys.glob("~"),".Rprofile"))
或使用额外包来自R会话:
library(pathological)
r_profile()
用户应仔细检查选项条目是否未嵌套在IF条件中,如下面的代码所示:
# this will not help for R CMD check --as-cran
if(interactive()) {
options(repos = c(CRAN="http://cran.r-project.org"))
}
任何平台的干运行
这是R脚本准备简单的R包临时案例进行测试,有助于更快地找到本地使用中出现的问题。 这个方法帮助我找到了我的.Rprofile文件中的错误,并且通常可以帮助设置工作初始状态。 在最好的情况下,检查运行应仅显示有关新提交的1个注释。
<强> 实施例 强>
# for example
R --vanilla -f makePackage.R
# here the resulting package path is as below
R --no-site-file CMD check --as-cran /tmp/pkgtest
# now see the check log
如果您的.Rprofile不存在,它将被创建,并且无论如何都会在文件末尾放置一个新行。
makePackage.R
脚本
# makePackage.R
# makes simple package for playing with check --as-cran
# copy this content to file makePackage.R
# then source it into your R --vanilla session
name <- "pkgtest"
#
# prepare and adjust package template
#
tempbase <- dirname(tempdir())
e <- new.env()
path <- dirname(tempdir())
# make simple package in path
e$fu <- function(){"Hello"}
package.skeleton(name=name,force=T,path=path,environment=e)
nil <- file.remove(
file.path(path,name,'Read-and-delete-me'),
file.path(path,name,'man',paste0(name,'-package.Rd'))
)
# adjust DESCRIPTION
D <- readLines(file.path(path,name,"DESCRIPTION"))
D[grepl("^Title: ",D)] <- "Title: Testing Skeleton"
D[grepl("^Author: ",D)] <- "Author: John Doe"
D[grepl("^Description: ",D)] <- "Description: Checking --as-cran check."
D[grepl("^Maintainer: ",D)] <- "Maintainer: John Doe <jdoe@doe.net>"
D[grepl("^License: ",D)] <- "License: GPL (>= 2)"
write(D,file.path(path,name,"DESCRIPTION"))
# make fu.Rd
write(
"\\name{fu}\\alias{fu}\\title{Prints}\\description{Prints}
\\usage{fu()}\\examples{fu()}",
file.path(path,name,'man','fu.Rd'))
#
# ensure that .Rprofile contains repos option
# add fresh new line et the end of .Rprofile
#
userRp <- file.path(Sys.glob("~"),".Rprofile")
write("options(repos = c(CRAN='http://cran.r-project.org'))",file=userRp, append=TRUE)
#
# print final message
#
msg <- sprintf("
Your test package was created in %s,
under name %s,
your user .Rprofile in %s was modified (option repos),
now check this test package from command line by command:
R --no-site-file CMD check --as-cran %s
", path, name, userRp, file.path(path,name)
)
# now is time to check the skeleton
message(msg)
检查包
# replace package-path by the path adviced by the sourcing the script above
R --no-site-file CMD check --as-cran package-path
有用户个人资料和网站配置文件,在上面的方法中,您可以使用--no-site-file
选项来绕过网站配置文件(第二步)。
PDF错误
您可能会遇到PDF和乳胶相关的错误,这些错误很可能是由于缺少或未完成乳胶安装造成的。 Ycan使用--no-manual
选项跳过PDF测试。
R --no-site-file CMD check --no-manual --as-cran /tmp/pkgtest
答案 1 :(得分:6)
以上答案仅适用于Linux。在Windows上,我必须使用不同的方法。当我尝试在Windows 7上的R 3.2.0中构建和检查我的新软件包时,我得到了同样的错误:
checking package dependencies ... NOTE
No repository set, so cyclic dependency check skipped
我尝试在我的新软件包的根目录中创建一个.Rprofile文件,但这不起作用。相反,我不得不去:
C:\Program Files\R\R-3.2.0\etc
并编辑文件:
Rprofile.site
在Rprofile.site文件中,我添加了建议的行:
options(repos = c(CRAN="http://cran.r-project.org"))
编辑Rprofile.site文件后,请注意 “没有存储库设置,因此跳过循环依赖性检查”最终消失了。