我在使用roxygen2创建R包时遇到问题。这是我的代码:
require(devtools)
require(roxygen2)
setwd("C://Users//pfeiffer.s@pg.com//Documents//sp th//R stuff")
create("myfunctions")
此时,我使用Windows文件资源管理器将.R文件添加到文件夹"myfunctions"中的文件夹"R"中。
setwd("C:/Users/pfeiffer.s@pg.com/Documents/sp th/R stuff//myfunctions")
document()
setwd("C:/Users/pfeiffer.s@pg.com/Documents/sp th/R stuff")
install("myfunctions")
一切似乎都正常工作,但是:
?vectorize #one of the .R files I added
在指定的包和库中没有用于"矢量化"的文档:你可以试试"??"??矢量化
您的问题是安装后没有加载包。
代替
install("myfunctions")
尝试运行
install("myfunctions")
library("myfunctions")