使用:
来自glmmadmb()
电话的错误:
Error in system(cmd, intern = intern, wait = wait | intern, show.output.on.console = wait, : 'C:/Program' not found"
提示我在没有空格的路径名中重新安装R,正如这篇关于same error (with Rcpp
)的帖子所建议的那样。我这样做了,错误仍然存在。
Rstudio中的代码在标准/默认R安装(带空格的路径名)中运行时没有错误。尝试使用glmmadmb()
时,EMACS / ESS / R 3.1.1出现了问题,这促使我使用debug=TRUE
> gaFP0<-glmmadmb(count~tx,
random=~(1|Feed)+(1 | Pint),
data=dnoNM,family="nbinom",zeroInflation=TRUE,
debug=TRUE)
哪个输出:
platform: windows 64
executable name: glmmadmb.exe
bin_loc: C:/RLIB/glmmADMB/bin/windows64/glmmadmb.exe
using temp directory
C:\Users\user1\AppData\Local\Temp\Rtmpq2AddG\glmmADMB90e434c55ff2
creating temp directory changed working directory to
C:/Users/user1/AppData/Local/Temp/Rtmpq2AddG/glmmADMB90e434c55ff2
Command line: "C:/RLIB/glmmADMB/bin/windows64/glmmadmb.exe" -maxfn 500 -maxph 5 -noinit -shess
Error in system(cmd, intern = intern, wait = wait | intern, show.output.on.console = wait, :
'C:/Program' not found
changed working directory to h:/
removed temp directory
C:\Users\user1\AppData\Local\Temp\Rtmpq2AddG\glmmADMB90e434c55ff2
作为注释 - 我还重新安装了Emacs,路径名中没有空格,但仍然有错误,但我没有卸载原始版本。
答案 0 :(得分:1)
我使用的hack使得EMACS / ESS可以运行代码,这是函数调用之前的Sys.setenv()
语句。
> Sys.setenv(R_SHELL = "C:\\Windows\\system32\\cmd.exe")
> gaFP0<-glmmadmb(count~tx,
random=~(1|Feed)+(1 | Pint),
data=dnoNM,family="nbinom",zeroInflation=TRUE,
debug=TRUE)
现在glmmadmb()
按预期运行。请参阅Ross Boylan解释的原因(此Q&amp; A stackoverflow帖子是在他的许可下编写的)。