Hi All,

I have a user who is receiving this error after running the following:

library(rjags)
library(R2jags)
x = c(1.6907, 1.7242, 1.7552, 1.7842, 1.8113, 1.8369, 1.8610, 1.8839)
n = c(59, 60, 62, 56, 63, 59, 62, 60)
r = c(6, 13, 18, 28, 52, 53, 61, 60)
N = 8
data=list("x","n","r","N")
inits=function(){
list(alpha.star=0,beta=0)
}
parameters=c("alpha","beta","rhat")
result=jags(data,inits,model.file="test.bug",parameters,n.chains=3,n.iter=10000,n.burnin=1000,n.thin=1)

module glm loaded
Error: object '.Random.seed not found


I don't think it has anything to do with rjags or R2jags because when I run the
same code on the same system, I receive no error messages.

The R version is 2.14.0 on a Linux 64 machine.

Any help would be appreciated.

Sylvia Wilkerson



        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to