我正在尝试加载包“Matrix”并收到此错误:
错误:从名称空间'Matrix'导出方法时找到的函数,该函数不是S4泛型:'as.vector' 另外:警告信息: 包'Matrix'是在R版本3.3.0下构建的 错误:“Matrix”
的包或命名空间加载失败我尝试过重启和安装等。
我尝试过的一件事是(R Cannot allocate memory though memory seems to be available)
wd <- getwd()
assign('.First', function(x) {
require('Matrix') #and whatever other packages you're using
file.remove(".RData") #already been loaded
rm(".Last", pos=.GlobalEnv) #otherwise won't be able to quit R without it restarting
setwd(wd)
}, pos=.GlobalEnv)
assign(".Last", function() {
system("R --no-site-file --no-init-file --quiet")
}, pos=.GlobalEnv)
save.image() #or only save the things you want to be reloaded.
q("no")
但我似乎无法让该解决方案尝试看看它是否会在“Vanilla”R下加载
编辑:我能够尝试在“Vanilla”R下加载包但我仍然得到同样的错误