Questions about BUGS language for defining Bayesian models that can be run by the WinBUGS software package. It is advised to supplement your question with a reproducible BUGS example (http://stackoverflow.com/q/5963269); for statistical questions please use crossvalidated.com.

learn more… | top users | synonyms

0
votes
1answer
18 views

How to load arrays with 3 dimension using R2WinBUGS?

Since WinBUGS and R have different ways of organizing data for arrays, how should I organize the data when using R2WinBUGS so that the order is correct? Thanks!
0
votes
1answer
17 views

How to find probability of posterior parameter with Winbugs

My winbugs code is as follows: model { for ( i in 1:N){ logit(p[i])<- alpha+ beta*x[i] y[i]~ dbin(p[i], n[i]) } alpha~ dnorm(0,0.000001) beta~ dnorm(0,0.000001) ...
0
votes
1answer
8 views

WinBUGS equals function with NA

Would someone please let me know what the equals function in WinBUGS return if one of the elements in the equals brackets is NA? Specifically, I want to do the transformation: for(i in 1:N){ ...
0
votes
1answer
10 views

WinBUGS inits: “number of initial values not equal to length of vector”

I can't find the problem with my BUGS model. The model syntax is correct, the data is loading fine, but I am having the following error message while loading my inits: number of initial values not ...
0
votes
0answers
13 views

How to code probit model in winbugs

I am wondering how I could code this equation in Winbugs: $$ P = 1 - Phi((X*beta)/sqrt_{2*sigmasquared)} $$ Where X is the design matrix, Phi is the cdf of the standard normal distribution and ...
0
votes
1answer
32 views

Counterpart of pnorm of R in Winbugs

I use pnormin R for standard normal distribution. I am wondering what code I could use to do so in Winbugs because I will use the Bayesian probit. For example I calculate p = Phi(Xbeta) as ...
0
votes
1answer
16 views

WINBugs: array index is greater than array upper bound

I need help to find the error in my WINBUGS code (v. 1.4.3). While in the "Model Specification" step, the model looks syntatically correct. However, in my attempt to load the data, I got this error: ...
-1
votes
0answers
5 views

How to CODE data from months into quartiles?

Hi I am using Winbugs and I have individual data for months in a year and i want to categorize the data so that when i code the data it selects quarter months in a year?
0
votes
0answers
21 views

How do I load data into Win Bugs from Excel or from Notepad (doc ending with .txt)?

I need to load some data into WinBugs from Excel and for some reason, Winbugs doesn't recognize it. There are many things I have tried (all of which are listed below) and none of these work. I ...
0
votes
0answers
59 views

What's wrong with this WinBUGS model

I used Winbugs from R via R2WinBUGS and BRugs package, I write the model and try to run it, but the result didn't come out, and I read the WinBUGS log, seems nothing got wrong. Here is the model: ...
0
votes
1answer
40 views

error in using WinBUGS from R

The code is following: require(BRugs) require(R2WinBUGS) model<-function(){ for(i in 1:N){ y[i] ~ dnorm(x[i], sigma.y) } x[1] ~ dnorm(theta[1], sigma.y) theta[1] <- 0 for(j in 2:N){ ...
0
votes
2answers
52 views

multiple definitions of node error in winbugs

I try to use WinBUGS from R via BRugs and R2WinBUGS, the code is followinig: require(R2WinBUGS) require(BRugs) model<-function(){ for(i in 1:N){ y[i] <- x[i] + w[i] w[i] ~ dnorm(0, ...
1
vote
1answer
126 views

unbalanced panel and multidimensional array in Winbugs

I have a model for input demand, with unbalanced data. The dependent variable is yijt, where i means input of production function (i=1,2,3), j means firm (j=1,..,21), and t means time (ti=1,..,Ti). ...
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, ...
-3
votes
1answer
192 views

the error when I use R2WinBUGS packages

all, I employ the R packages R2WinBUGS to run Winbugs with R.However,the program is not able to work well.The following codes attached panel.bug: model{ for(i in 1:N){ for(t in 1:T){ ...
1
vote
2answers
109 views

WinBUGS - Defining a stepwise uniform distribution

I want to define a distribution in my model of the form: P(x=10)=0.10, P(x=15)=0.20, P(x=20)=0.70 The WinBUGS FAQ says it is possible construct my own discrete uniform distribution as a categorical ...
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 ...
-2
votes
1answer
225 views

WINBUGS error undefined real result oh why? [closed]

Can someone tell me what is wrong in my code when i get this error in winbugs. Is it my model? or my initial values. where did i go wrong?
1
vote
1answer
146 views

R2WinBUGS error - Trap - incompatible copy

I'm trying to call winBUGS from R to estimate a logistic regression. I'm using the following code: # Directorio de trabajo setwd("~/3 Diplomado/7 Bayesiana/8t1") # paquete para hablarse con WinBUGS ...
0
votes
3answers
172 views

Logit regression with WinBUGS/R2WinBUGS not converging to likelihood estimates

I am a Win-7 user with R 2.15.2 Can someone help me why is the following model not converging well close to simple logit model estimates? Edited Mydata <- structure(list(gg = c(13.659955, ...
0
votes
1answer
341 views

“Multiple definition of node a” error in Winbugs

okay i just rewrite my code. Now the problem is when i compile it, I get an error of "multiple definition of node a". Do anyone know what wrong in my code. I create the variable a,b and c for the ...
0
votes
1answer
212 views

Error in WinBUGS CODE

I could not get the WinBUGS code below to work. It works for normal priors, but not for uniform priors. The error message that appears after I click compile is array index is greater than array upper ...
0
votes
1answer
314 views

Plotting fitted values vs observed ones in R or winbugs

I want to plot the fitted values versus the observed ones and want to put straight line showing the goodness of fit. However, I do not want to use abline() because I did not calculate the fitted ...
1
vote
1answer
155 views

Probit model in winbugs

I conducted an analysis using a logit model and now want to do the same using a probit model. Can anyone please turn this winbugs logit model into a winbugs probit model? model { for (i in 1:n) { ...
0
votes
0answers
68 views

counterpart of tapply in winbugs

I need to calculate the mean of each state. In R, I did this by using tapply(y,state,mean). Here is an example: state <- rbinom(10,4,0.6) y <- rnorm(10) tapply(y,x,mean) where y represent ...
1
vote
1answer
97 views

Using Winbugs plots in latex

I conducted a bayesian analysis and obtained some plots in winbugs. Does any one how to put the history graphs in WinBUGS in Latex? I could not save the plots as pdf.
1
vote
2answers
72 views

Choosing prior distribution in logit model

I am conducting a logit regression analysis in winbugs from R. I have to force all of the coefficients of this model to be positive. Therefore, I used uniform priors for all of the coefficients, but ...
0
votes
2answers
37 views

Bayesian interval of 5 fitted values

I conducted a Bayesian analysis by running Winbugs from R and derived the fitted values and their Bayesian intervals. Here is the related Winbugs output where mu[i] is the i-th fitted value. node ...
1
vote
1answer
100 views

Calling OpenBUGS in R not working

I have been trying to run a R code to use OpenBugs. It was working well till yesterday and I do not know what I did that it started showing some error. Then I decided to see if some simple example ...
3
votes
1answer
267 views

Two models in one Winbugs script

I am conducting a Bayesian analysis using Winbugs from R. I need to combine two Winbugs scripts into one: however, I am receiving an error message (Variable x2 is not defined in model or in data set). ...
1
vote
1answer
41 views

How to specify prior distribution

I am conducting a bayesian analysis in winbugs. Here is my model: y[i] ~ dnorm( mu[i], tau ) b[i] ~ dnorm(0.0, alpha) mu_i = 1- (beta1*x1 + beta2*x2 + ... + beta20*x20) + b[i] where b[i] is ...
-4
votes
1answer
497 views

How to convert winbugs code to R

Since I am new to winbugs, I need to conduct a bayesian analysis in R. To do so, I need to convert the winbugs code below into R code: model{ # model’s likelihood for (i in 1:n){ time[i] ~ dnorm( ...
1
vote
1answer
69 views

Bayesian Model: Find minimum value of mu

I have been trying to solve a problem using bayesian methods, but I can't figure out how to write the model. I am trying to find the value mu such that x = mu + Error, Error ~ Gamma(a, b) (or some ...
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 ...
2
votes
1answer
147 views

Model in rjags for sum to zero constraints

I am trying to fit an ANOVA model into rjags. The model is like this for (r in 1:nE){ for ( j in 1:nP){ for ( i in 1:nA){ logit(p[i,j,r]) <- mu[r] + theta[i,r] + varphi[j,r] + ...
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
55 views

Can I get predicitons from Winbugs/OpenBUGS?

I am new to WinBUGS and OpenBUGS. I just ran an example model. Just wondering whether I can get the predicitions generated by WinBUGS/OpenBUGS. If not, any other convenient ways available (with the ...
1
vote
1answer
68 views

How to write syntax for differential item functioning (DIF) in WinBUGS?

How to add data in syntax of WinBUGS 14 for differential item function (DIF)?
3
votes
0answers
363 views

WinBUGS Code for Bayesian hierarchical model

I’m reading this paper (which aims to model the nanowires (NW) growth using a Bayesian hierarchical approach). In page 7, the author proposed a model to describe the growth of nanowires. I’m trying to ...
1
vote
2answers
156 views

Interpreting WinBUGS traps and how to automate the program?

First of all, does anybody know of a developer's guide for WinBUGS? The website is full of detailed examples for Doodles and documentation for the model language, but I have yet to find anything about ...
6
votes
1answer
386 views

OpenBUGS fails to converge on model that converges in WinBUGS. Precision limit?

As the title of this post says, when I try to run code and data that work fine in WinBUGS from R using BRugsFit (with coda=T), I get these errors: Error in glm.fit(x = structure(c(1, 1, 1, 1, 1, 1, ...
-1
votes
1answer
75 views

Why matbugs never stops running?

I can run a model in WinBUGS14 with no problem and get the results, but I get a problem when I run the same WinBUGS model (shown as below) from MatLab. It looks the program never stops running and no ...
0
votes
2answers
363 views

Trying to create and loop through matrix of unbalanced data in R

I am trying to conduct an hierarchical bayesian analysis but am having a little trouble with R and WinBUGS code. I don't have balanced data and am struggling with the coding. I have temperature data ...
2
votes
1answer
269 views

R2WinBUGS - how to reload the WinBUGS computation results to bugs object again

I have run a looong computation in WinBUGS (million iterations) using the R2WinBUGS package from within R: bugs.object <- bugs(...) but the R crashed. How do I reload the bugs.object into R ...