y = seq(1, 490, by = 1) cat("model { for(i in 1:length(y)){y[i] ~ dpar(alpha, u)} alpha ~ dunif (0,50) }" , file = "temp.txt") data = list(y=y,u=35) modeltemp <- jags.model( file = "temp.txt", data=data, n.chains = 1, n.adapt = 1000) params = c("alpha") samps <- coda.samples(modeltemp, params, n.iter=20000,thin=1) plot(samps) summary (samps) I have this as my code, but the error is coming up as: **Compiling model graph Resolving undeclared variables Allocating nodes Graph information: Observed stochastic...