1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/regressionBF.R
\name{regressionBF}
\alias{regressionBF}
\title{Function to compute Bayes factors for regression designs}
\usage{
regressionBF(
formula,
data,
whichModels = "all",
progress = getOption("BFprogress", interactive()),
rscaleCont = "medium",
callback = function(...) as.integer(0),
noSample = FALSE
)
}
\arguments{
\item{formula}{a formula containing all covariates to include in the
analysis (see Examples)}
\item{data}{a data frame containing data for all factors in the formula}
\item{whichModels}{which set of models to compare; see Details}
\item{progress}{if \code{TRUE}, show progress with a text progress bar}
\item{rscaleCont}{prior scale on all standardized slopes}
\item{callback}{callback function for third-party interfaces}
\item{noSample}{if \code{TRUE}, do not sample, instead returning NA.}
}
\value{
An object of class \code{BFBayesFactor}, containing the computed
model comparisons
}
\description{
This function simultaneously computes Bayes factors for groups of models in
regression designs
}
\details{
\code{regressionBF} computes Bayes factors to test the hypothesis that
slopes are 0 against the alternative that all slopes are nonzero.
The vector of observations \eqn{y} is assumed to be distributed as \deqn{y ~
Normal(\alpha 1 + X\beta, \sigma^2 I).} The joint prior on
\eqn{\alpha,\sigma^2} is proportional to \eqn{1/\sigma^2}, the prior on
\eqn{\beta} is \deqn{\beta ~ Normal(0, N g \sigma^2(X'X)^{-1}).} where
\eqn{g ~ InverseGamma(1/2,r/2)}. See Liang et al. (2008) section 3 for
details.
Possible values for \code{whichModels} are 'all', 'top', and 'bottom', where
'all' computes Bayes factors for all models, 'top' computes the Bayes
factors for models that have one covariate missing from the full model, and
'bottom' computes the Bayes factors for all models containing a single
covariate. Caution should be used when interpreting the results; when the
results of 'top' testing is interpreted as a test of each covariate, the
test is conditional on all other covariates being in the model (and likewise
'bottom' testing is conditional on no other covariates being in the model).
An option is included to prevent analyzing too many models at once:
\code{options('BFMaxModels')}, which defaults to 50,000, is the maximum
number of models that `regressionBF` will analyze at once. This can be
increased by increasing the option value.
For the \code{rscaleCont} argument, several named values are recongized:
"medium", "wide", and "ultrawide", which correspond \eqn{r} scales of
\eqn{\sqrt{2}/4}{sqrt(2)/4}, 1/2, and \eqn{\sqrt{2}/2}{sqrt(2)/2},
respectively. These values were chosen to yield consistent Bayes factors
with \code{\link{anovaBF}}.
}
\examples{
## See help(attitude) for details about the data set
data(attitude)
## Classical regression
summary(fm1 <- lm(rating ~ ., data = attitude))
## Compute Bayes factors for all regression models
output = regressionBF(rating ~ ., data = attitude, progress=FALSE)
head(output)
## Best model is 'complaints' only
## Compute all Bayes factors against the full model, and
## look again at best models
head(output / output[63])
}
\references{
Liang, F. and Paulo, R. and Molina, G. and Clyde, M. A. and
Berger, J. O. (2008). Mixtures of g-priors for Bayesian Variable
Selection. Journal of the American Statistical Association, 103, pp.
410-423
Rouder, J. N. and Morey, R. D. (in press). Bayesian testing in
regression. Multivariate Behavioral Research.
Zellner, A. and Siow, A., (1980) Posterior Odds Ratios for Selected
Regression Hypotheses. In Bayesian Statistics: Proceedings of the First
Interanational Meeting held in Valencia (Spain). Bernardo, J. M.,
Lindley, D. V., and Smith A. F. M. (eds), pp. 585-603. University of
Valencia.
}
\seealso{
\code{\link{lmBF}}, for testing specific models, and
\code{\link{anovaBF}} for the function similar to \code{regressionBF} for
ANOVA models.
}
\author{
Richard D. Morey (\email{richarddmorey@gmail.com})
}
\keyword{htest}
|