我最近开始使用JAGS并在R内调用它。我终于用代码将RAG链接到R上了。
install.packages("rjags")
library(rjags)
得到了输出
Linked to JAGS 3.4.0
Loaded modules: basemod,bugs
我还以BUG格式将JAGS模型数据保存在一个单独的文件中(就像我被教的那样)。
但是,当我尝试运行数据时,我不断收到错误消息:
Error in file(modfile, "rt") : cannot open the connection
In addition: Warning message:
In file(modfile, "rt") :
cannot open file 'age_problem.bug': No such file or directory
Error in jags.model("age_problem.bug", data = list(X = X, N = length(X)), :
Cannot open model file "age_problem.bug"
和
Error in update(jags, 1000) : object 'jags' not found
我缺少一些关键步骤吗?
编辑:代码示例问题
N <- 1000
x <- rnorm(N, 0, 5)
write.table(x,
file = 'example1.data',
row.names = FALSE,
col.names = FALSE)
library('rjags')
jags <- jags.model('example1.bug',
data = list('x' = x,
'N' = N),
n.chains = 4,
n.adapt = 100)
update(jags, 1000)
jags.samples(jags,
c('mu', 'tau'),
1000)
JAGS型号:
model {for (i in 1:N) {
x[i] ~ dnorm(mu, tau)}
mu ~ dnorm(0, .0001)
tau <- pow(sigma, -2)
sigma ~ dunif(0, 100)}
最佳答案
您可能没有提供模型文件age_problem.bug
的完整路径。纠正此路径应该可以解决问题,但是我通常将cat
模型转换为tempfile
,如下面的代码所示,这对您来说应该可以正常工作。
library(rjags)
N <- 1000
x <- rnorm(N, 0, 5)
cat('model {for (i in 1:N) {
x[i] ~ dnorm(mu, tau)}
mu ~ dnorm(0, .0001)
tau <- pow(sigma, -2)
sigma ~ dunif(0, 100)}', file={f <- tempfile()})
jags <- jags.model(f, data = list(x = x, N = N), n.chains = 4, n.adapt = 100)
update(jags, 1000)