bayes.lm | R Documentation |
Gelman et al. (2002) describe general methods for Bayesian implementation of simple linear models (e.g. simple and multiple regression and fixed effect one way ANOVA) with standard non-informative priors uniform on \alpha, \sigma^2
. The function is not yet suited for multifactor or multivariance (random effect) ANOVAs.
bayes.lm(Y, X, model = "anova", length = 1000, cred = 0.95)
Y |
An n x 1 column vector (a matrix with one column) containing the response variable. |
X |
The n x p design matrix |
model |
One of |
length |
Number of draws for posterior. |
cred |
Level for credible interval. |
Provides the median and central credible intervals for model parameters.
Ken Aho
Gelman, A., Carlin, J. B., Stern, H. S., and D. B. Rubin (2003) Bayesian Data Analysis, 2nd edition. Chapman and Hall/CRC.
mcmc.norm.hier
## Not run:
data(Fbird)
X <- with(Fbird, cbind(rep(1, 18), vol))
Y <- Fbird$freq
bayes.lm(Y, X, model = "reg")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.