a cross-platform Gibbs sampler similar to BUGS for analysis of Bayesian hierarchical models using Markov Chain Monte Carlo simulation.
1
vote
1answer
14 views
strange jags.parallel error / avoiding lazy evaluation in function call
I have a function call (to jags.parallel) that works when given a numerical argument like n.iter = 100 but fails when the argument uses a variable value, n.iter = n.iter. This looks like it might be ...
0
votes
0answers
81 views
Choosing Different Distributions based on if - else condition in WinBugs/JAGS
I am trying to write a Winbugs/Jags model for modeling multi grain topic models (exactly this paper -> http://www.ryanmcd.com/papers/mg_lda.pdf)
Here I would like to choose a different distribution ...
1
vote
1answer
75 views
Save Jags/ Winbugs output in R
I'm running Jags/ Winbugs in R, which works fine, but I can't save the output to a text or csv file (either would work)
TEST.sim<- jags(data=jags.data,
...
0
votes
1answer
37 views
Thinning Chains - BUGS and JAGS
Hi I have a quick question about the details of running a model in JAGS and BUGS.
Say I run a model with n.burnin=5000, n.iter=5000 and thin =2. Does this mean that the program will
1) Run 5,000 ...
0
votes
0answers
55 views
How To Use JAGS data block and observable function - missing data
I was hoping to get some help using and understanding the data block in JAGS. Are the values "regenerated" for each iteration of my simulation?
What I am trying to do is the following:
My data is ...
0
votes
0answers
120 views
Modeling User-Item Rating Using RJags and BUGS [closed]
I am trying to implement a model for user-item rating using Rjags. This general model is from a paper called "Regression Based Linear Latent Factor Models". The rating is decided by user-item ...
0
votes
0answers
86 views
Crazy divergence in mixed model - chains start well but go crazy later [closed]
I'm trying to compute a mixed model using jags (R2jags) and I got very strange divergence. The chains started so well, very well according to the results expected (also see lmer output of the same ...
0
votes
0answers
26 views
Using an interpolation function in JAGS
I would like to use a interpolated function (here calibrationCurve) to build a model in JAGS:
model{
for (i in 1:N)
{
M[i] ~ dnorm(mu[i],1)
mu[i] <- calibrationCurve(t[i])
...
}
}
where ...
6
votes
1answer
211 views
How can I convert an mcmc.list to a bugs object?
I am using the rjags R library. The function coda.samples produces an mcmc.list, for example (from example(coda.samples)):
library(rjags)
data(LINE)
LINE$recompile()
LINE.out <- coda.samples(LINE, ...
1
vote
1answer
182 views
emacs syntax highlighting for jags / bugs
Are there packages to color-highlight jags amd bugs model files? I have ESS installed, but it doesn't seem to recognize .bug files or jags/bugs syntax out of the box.
0
votes
0answers
72 views
JAGS cannot valuate lower index of counter
I have a loop where if the variable ndelta is 1, the counter starts at 1, otherwise, it starts at 2. step(x) returns 1 if x >= 0, and 1 otherwise, so I'm trying to use step(ndelta-2)+1, which should ...
3
votes
1answer
281 views
How to add vertical line to posterior density plots using plot.mcmc?
I often run JAGS models on simulated data with known parameters. I like the default plot method for mcmc objects. However, I would like to add an abline(v=TRUE_VALUE) for each parameter that is ...
4
votes
1answer
77 views
How to make the contents of a character vector appear like a file in R?
jags.model expects a file name containing a BUGS model as its first argument.
In order to contain everything in one script, I sometimes use the writeLines command to write the BUGS model to a file. ...
0
votes
1answer
72 views
Why this models return different sample
I am using Jags and I have defined two different models to estimate a parameter theta. Why does this two models return different sample of theta 1 and theta 2? Someone could help me?
#MODEL 1
model {
...
1
vote
1answer
661 views
dinterval() for interval censored data?
I am new to JAGS and am trying to understand how dinterval() works in JAGS for censored data. I am modeling coarse data where I only have upper and lower bounds for each data point (not the true ...
1
vote
1answer
168 views
What does this JAGS error mean? “Error in Slicer: Current value is inconsistent with data”
I'm using JAGS and R, linked via rjags and R2jags, to fit a series of models. The models are all the same except for the number of dimensions on one particular latent variable. (I can supply more ...