Attach() - >找不到对象错误(R2Jags)

时间:2015-04-11 18:29:10

标签: r jags r2jags

我正在使用R2Jags包。

我首先获得如下模型:

jags.data = list("Y"=y, "N"=N, Y1=y[1], C=x1)
# The parameters that we are monitoring (must monitor at least 1)
jags.params=c("sd.q","sd.r","Y", "X1", "X2")
model.loc=("ss_model.txt")
mod_ss = jags(jags.data, parameters.to.save=jags.params, model.file=model.loc, n.chains = 3, 
              n.burnin=5000, n.thin=1, n.iter=10000, DIC=TRUE)  

但是当我使用以下内容获得X1的后部valeus时:

attach(mod_ss)
X1

我明白了:

  

错误:对象' X1'找不到

我的问题:我该怎么做才能解决这个问题?

提前致谢。

1 个答案:

答案 0 :(得分:2)

问题解决了:

似乎在R2Jags的新版本中调用的正确函数是:

attach.jags(mod_ss, overwrite=TRUE)

[所以attach.jags代替attach()]