The r2winbugs tag has no wiki summary.
0
votes
0answers
46 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
39 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
46 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
2answers
99 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 ...
1
vote
1answer
140 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
167 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, ...
1
vote
1answer
52 views
Avoiding rounding in R
I am conducting a Bayesian analysis in R thorough "R2Winbugs" package. In the R output, teh estimated parameters are rounded. My question is how can I control this?
Here is my command:
bugs(data, ...
6
votes
1answer
206 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, ...
2
votes
0answers
56 views
R2OpenBUGS: modelling final treatment outcomes from intermediate outcomes
Is anyone using R2OpenBUGS? Should I rather be using r2winbugs? ...
I am trying to model final (2-year) treatment outcomes (e.g. success, death, default or failure) for my sample of patients with a ...
0
votes
1answer
286 views
Calling WinBUGS14 from R
I'm trying to call WinBUGS from R, but I have not been very successful.
I typed this code in R:
radon.data <- list ("n", "J", "x", "y", "county")
radon.inits <- function (){
list ...
3
votes
1answer
263 views
OpenBUGS: missing value in Bernoulli distribution
I'm trying to model the observation "time" as random variable with OpenBUGS via R (R2OpenBUGS). If all the observation times are available (no NA's) everything works, but if I set one of the times to ...
5
votes
1answer
815 views
R2WinBUGS - logistic regression with simulated data
I am just wondering whether anyone has some R code that uses the package R2WinBUGS to run logistic regression - ideally with simulated data to generate the 'truth' and two continous co-variates.
...
1
vote
3answers
543 views
R2WinBUGS - Warning messages
I am trying to use R2WinBUGS using this example:
code
(Please only consider the part: ### 5.4. Analysis using WinBUGS)
I am getting this error message:
Error in file(con, "wb") : cannot open the ...
2
votes
1answer
268 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 ...
