Re: [R] Predict in the package R2BayesX

2012-06-12 Thread Achim Zeileis
On Tue, 12 Jun 2012, Paul J Ossenbruggen wrote: I have the same question. This paper may help you. http://eeecon.uibk.ac.at/wopec2/repec/inn/wpaper/2012-10.pdf Thanks for posting this, Paul. The paper above describes the current state of affairs in "R2BayesX". But we are also working on exte

Re: [R] Predict in the package R2BayesX

2012-06-12 Thread Paul J Ossenbruggen
I have the same question. This paper may help you. http://eeecon.uibk.ac.at/wopec2/repec/inn/wpaper/2012-10.pdf Best of luck. Paul -- View this message in context: http://r.789695.n4.nabble.com/Predict-in-the-package-R2BayesX-tp4632618p4633145.html Sent from the R help mailing list archive at

Re: [R] Predict in the package R2BayesX

2012-06-12 Thread Paul J Ossenbruggen
I have the same question. This paper may help you. http://eeecon.uibk.ac.at/wopec2/repec/inn/wpaper/2012-10.pdf Best of luck. Paul -- View this message in context: http://r.789695.n4.nabble.com/Predict-in-the-package-R2BayesX-tp4632618p4633144.html Sent from the R help mailing list archive at

[R] Predict in the package R2BayesX

2012-06-06 Thread niandra
Hi all I'm using the function bayesx to estimate a simple model, for example: library(R2BayesX) ## generate some data set.seed(111) n <- 200 ## regressor dat <- data.frame(x = runif(n, -3, 3)) ## response dat$y <- with(dat, 1.5 + sin(x) + rnorm(n, sd = 0.6)) ## estimate models with ## bayesx