Bayesian communication
Here are some thoughts about the project that my Bayesian students are working on now.
1. When one communicates a Bayesian analysis, one should clearly state the prior beliefs and the prior distribution that matches these beliefs, the likelihood, and the posterior distribution.
2. In any problem, there are particular inferential questions, and a Bayesian report should give the summaries of the posterior that answer the inferential questions.
3. In the project, the questions are to compare two proportions, and if it is reasonable to assume that the proportions are equal. (The first question is an estimation problem and the second question relates to the choice of model.)
4. What role does the informative prior play in the final inference? In the project, the students perform two analyses, one with an informative prior and one with a vague prior. By comparing the two posterior inferences, one can better understand the influence of the prior information.
5. There is a computational aspect involved in obtaining the posterior distribution. In a Bayesian report, one can talk about the general algorithms that were used. But the computational details (like R code) has to be in the background, say in an appendix.
6. The focus of the project (of course) is the Bayesian analysis. But it is helpful to contrast the Bayesian analysis with frequentist methods. The student should think of frequentist methods for estimation and testing and which methods are appropriate for addressing these questions. In the project drafts, it seemed the weakest part of the draft was the description of the frequentist methods.
Filed under: Uncategorized | Leave a Comment
Bayesian software
A lot has happened in, say, the last 10 years with respect to Bayesian software. This has been a controversial subject and it would be worthwhile to talk about some of the main issues.
1. First, if one was going to design a Bayesian software package, what would it look like? One advantage of the Bayesian paradigm is its flexibility in defining models, doing inference, and checking and comparing models. So any software should allow for the input of “general” models including priors, a variety of methods for fitting the models, and also a variety of methods for doing inference (say, find a marginal posterior for a function of parameters of interest) and checking the validity of the model.
2. Of course, the most popular Bayesian software program is Bugs that includes all of the derivatives of Bugs including WinBugs and OpenBugs. It allows for general model specifications by writing a “model script”, it has a general MCMC computing engine that works for many problems, and it allows for general inference and model checking.
3. Ok, we should all use bugs for Bayesian computing? Actually, I purposely don’t use bugs in my Bayesian class and instead use my package LearnBayes in the R system. Why? Well, although bugs is pretty easy to use, it is sort of a black box where one can use it without understanding the issues in MCMC computing and diagnostics. I want my students to understand the basic MCMC algorithms like Gibbs and Metropolis sampling and get some experience in implementing these algorithms to understand the pitfalls. I would feel more comfortable teaching bugs after the student has had some practice with MCMC, especially for examples where MCMC hasn’t converged or has mixing problems.
4. Another approach is to program MCMC algorithms for specific Bayesian models. This approach is taken using the R package MCMCpack. For example, suppose I want to do a Bayesian linear regression using a normal prior on the regression vector and a inverse gamma prior on the variance. Then there is a function in MCMCpack that will work fine, implement the Gibbs sampling, and give you a matrix of simulated draws and also the prior predictive density value that can be used in model comparison. But suppose I want to use a t prior instead of normal for beta — then I’m stuck. These specific algorithms are useful if you want to fit “standard” models, but we lose the flexibility that is one of the advantages of Bayes.
5. Of course, as the programs become more flexible, it takes a more experienced Bayesian who can actually run the programs. If we wish to introduce Bayes to the masses, maybe we need to provide a suite of canned programs.
It will be interesting to see how Bayesian software will evolve. It is pretty clear that bugs will be a major player in the future, perhaps with a new interface.
Filed under: Uncategorized | Leave a Comment
Bayesian regression – part II
In the earlier posting (part I), I demonstrated how one obtains a prior using a portion of the data and then uses this as a prior with the remaining portion of the data to obtain the posterior.
One advantage of using proper priors is that one can implement model selection.
Recall that the output of the MCMCregress function was fit2 — this is the regression model including all four predictors Food, Decor, Service, and East.
Suppose I want to compare this model with the model that removes the Food variable. I just adjust my prior. If I don’t believe this variable should be in the model, my prior for that regression coefficient should be 0 with a tiny variance or a large precision. Currently my prior mean is stored in the variable beta0 and the precision matrix is stored in B0. I change the component of beta0 corresponding to Food to be 0 and then assign a really big value to the (Food, Food) entry in the precision matrix B0. I rerun MCMCregress using this new model and the output is stored in fit2.a.
B0.a=B0; B0.a[2,2]=200000
fit2.a=MCMCregress(Price~Food+Decor+Service+East,
data = italian2, burnin = 0, mcmc = 10000,
thin = 1, verbose = 0, seed = NA, beta.start = NA,
b0 = beta0.a, B0 = B0.a, c0 = c0, d0 = d0,
marginal.likelihood = c(“Chib95″))
To compare the two models (the full one and the one with Food removed), I use the BayesFactor function in MCMCpack. This gives the log marginal likelihood for each model and compares models by Bayes factors. Here is the key output.
BayesFactor(fit2,fit2.a)
The matrix of the natural log Bayes Factors is:
fit2 fit2.a
fit2 0 303
fit2.a -303 0
Filed under: Uncategorized | Leave a Comment
Logistic regression exercise
In my Bayesian class, I assigned a problem (exercise 8.3 from BCWR) where one is using logistic regression to model the trajectory of Mike Schmidt’s home run rates.
First, I have written a function to compute the log posterior for a logistic regression model with a vague prior placed on the regression vector. The function together with a short example how it works can be found here.
Second, it seems that there is a problem getting the laplace function to converge if you don’t use a really good starting value. Here is an alternative way of getting the posterior mode.
Suppose y is a vector containing the home run counts and n is a vector with the sample sizes. Let age be the vector of ages and age2 be the vector of ages squared. Define the response to be a matrix containing the vectors of successes and failures.
response=cbind(y,n-y)
Then the mle of beta is found using the glm command with the family=binomial option
fit=glm(response~age+age2,family=binomial)
The posterior mode is the mle:
beta=coef(fit)
The approximation to the posterior variance-covariance matrix is found by
V=vcov(fit)
Now you should be able to use the random walk metropolis algorithm to simulate from the posterior.
Filed under: Uncategorized | 1 Comment
Bayesian regression — part I
To illustrate Bayesian regression, I’ll use an example from Simon Sheather’s new book on linear regression. A restaurant guide collects a number of variables from a group of Italian restaurants in New York City. One is interested in predicting the Price of a meal based on Food (measure of quality), Decor (measure of decor of the restaurant), Service (measure of quality of service), and East (dummy variable indicating if the restaurant is east or west of 5th Avenue).
Here is the dataset in csv format: http://www.stat.tamu.edu/~sheather/book/docs/datasets/nyc.csv
Assuming the usual regression model
,
,
suppose we assign the following prior to : we assume independence with
and
. Here
is the precision matrix, the inverse of the variance-covariance matrix.
How do we obtain values of the parameters ? We’ll use a small part of the data to construct our prior, and then use the remaining part of the data to do inference and eventually do some model selection.
First, I read in the data, select a random sample of rows, and partition the data into the two datasets italian1 and italian2.
italian=read.csv(“http://www.stat.tamu.edu/~sheather/book/docs/datasets/nyc.csv”)
indices=sample(168,size=25)
italian1=italian[indices,]
italian2=italian[-indices,]
y=italian1$Price
X=with(italian1,cbind(1,Food,Decor,Service,East))
fit=blinreg(y,X,5000)
Sigma0=cov(fit$beta)
B0=solve(Sigma0)
c0=(25-5)
d0=sum((y-X%*%beta0)^2)
data = italian2, burnin = 0, mcmc = 10000,
thin = 1, verbose = 0, seed = NA, beta.start = NA,
b0 = beta0, B0 = B0, c0 = c0, d0 = d0,
marginal.likelihood = c(“Chib95″))
beta=fit2[,1:5]
sigma=sqrt(fit2[,6])
lp=c(beta%*%x)
Min. 1st Qu. Median Mean 3rd Qu. Max.
43.59 46.44 47.00 46.99 47.53 50.17
summary(ys)
Min. 1st Qu. Median Mean 3rd Qu. Max.
25.10 43.12 46.90 46.93 50.75 67.82
Filed under: Uncategorized | Leave a Comment
Are birth weights normal?
A few weeks ago, I asked my class for an example of data that would be normally distributed and someone mentioned weights of people.
Are weights, more specifically birthweights of newborns normally distributed?
Peter Dunn in a JSE article here analyzes statistics for 44 babies born in a single day in an Australian hospital. The article has a link to the dataset babyboom.dat that contains the data.
If we construct a histogram of the birthweights, we get the following display.
We see some left skewness in this distribution — does this indicate that our normality assumption is false?
One can check the normality assumption by means of the posterior predictive distribution. Here’s an outline of the approach. (There are special functions in the LearnBayes package that make this process simple to implement.)
1. First we fit the normal() model using the traditional noninformative prior proportional to
. A simulated sample from the posterior is found using the function normpostsim.
fit=normpostsim(birth.weight,10000)
2. Next we think of an appropriate testing function. Since the birth weights don’t appear symmetric, a natural checking function is the sample skewness. We write a short function “skew” to compute this statistic.
sum((y-mean(y))^3)/sd(y)^3/(length(y)-1)

Filed under: Uncategorized | Leave a Comment
Here is another illustration of Bayes factors. We are worried about the possibility of outliers and so we assume the observations are distributed from a t distribution with location
, scale
, and degrees of freedom
. We have some prior beliefs about the location and scale: we assume
independent with
and
.
We observe the following data:
112.6,86.0,99.1,106.3,101.5,80.5,99.6,108.6,95.9)
{
mu=theta[1]
sigma=exp(theta[2])
y=stuff$y
df=stuff$df
loglike=sum(dt((y-mu)/sigma, df, log=TRUE)-log(sigma))
logprior=dnorm(mu,100,10,log=TRUE)+dnorm(log(sigma),0,2, log=TRUE)
loglike+logprior
}
Filed under: Uncategorized | Leave a Comment
One problem with a p-value is that it is hard to interpret if you don’t know the sample size. Andy Gelman talks about this problem on his blog.
Here I’ll contrast the message communicated by a p-value and a Bayesian test by looking at the following three tables:
Table A: [32 18; 18 32]
Table B: [272 228; 228,272]
Table C: [2570 2430; 2430,2570]
[1] 0.9436246
[1] -0.3035413
[1] -1.411366
Filed under: Uncategorized | Leave a Comment
Here is today’s example illustrating a Bayesian test of a point null hypothesis. In Agresti and Franklin’s intro stats book, there is an example wondering if Americans work, on average, 40 hours per week. If represents the mean hours worked per week for all Americans, we are interested in testing
against the alternative
.
In the example in Agresti and Franklin’s text, a sample of 868 workers were selected and one observes that the workers worked an average of 39.11 hours and one assumes the population standard deviation is equal to . The test statistic is
and one computes a p-value of 0.061. There seems to be moderately significant evidence that the mean working hours for all workers is different from 40.
Here’s an outline of a Bayesian test (I give more details in class):
1. We assign probabilities to the hypotheses and
. Here we assume each hypothesis is equally likely.
2. Under the hypothesis , the prior for
is a point mass at the hypotheized value of 40.
3. Under the alternative hypothesis, we’ll place a N(40, ) prior on
. This reflects the belief that, under the alternative, values of
near 40 are more likely that values far from 40.
Under these assumptions, we give (in class) the posterior probability of the hypothesis . This probability is programmed in the function mnormt.twosided in the LearnBayes package. The inputs to this function are (1) the value to be tested, (2) the prior probability of
, (3) a vector of values of
and (4) a data vector consisting of
. The outputs are the Bayes factor in support of
and the posterior probability of
.
Since it is not clear how to specify the prior standard deviation — we compute the posterior probability for a range of values of
. I write a short function to output the posterior probability as a function of
and then I use the curve function to plot this probability for values of
from 0.01 to 2.
What we see is that the posterior probability of exceeds 0.35 for all values of
. This suggests that the p-value overstates the evidence against the null hypothesis.
> data=c(39.11, 868, 14)
> prob.H=function(tau)
+ mnormt.twosided(40,.5,tau,data)$post
> curve(prob.H(x),from=.01,to=2,xlab=”TAU”,ylab=”P(H)”)
Filed under: Uncategorized | Leave a Comment
Using the sapply function in R
In R, I think one of the most useful functions is sapply. By using this function, one can avoid writing a loop. Let me illustrate using this function for the binomial/beta exchangeable model.
The model is
1. distributed binomial(
)
2. are iid beta(
)
3. have a vague prior
The log posterior of is programmed in the function betabinexch in the LearnBayes package.
Suppose we wish to obtain a 90% interval estimate for . To simulate from the posterior, we first simulate a value of
from its posterior and then simulate
from the posterior beta(
Let’s consider the famous Efron and Morris baseball data — is the number of hits in
at-bats for the
th player.
I’ll read in the data, get a normal approximation to the posterior (function laplace), and then do a random walk Metropolis chain — I obtain a simulated sample from .
n=rep(45,18)
data=as.matrix(cbind(y,n))
fit=laplace(betabinexch,c(-1,4),data)
mcmc.fit=rwmetrop(betabinexch,list(var=fit$var,scale=2),c(-1,4),10000,data)
{
K=exp(mcmc.fit$par[,2])
eta=exp(mcmc.fit$par[,1])/(1+exp(mcmc.fit$par[,1]))
quantile(thetaj,c(.05,.95))
}
5% 95%
0.2052578 0.3288738
[,1] [,2] [,3] [,4] [,5] [,6] [,7]
Filed under: Uncategorized | Leave a Comment
Search
-
Blogroll
Recent Entries
- Bayesian communication
- Bayesian software
- Bayesian regression – part II
- Logistic regression exercise
- Bayesian regression — part I
- Are birth weights normal?
- A “robustness” illustration of Bayes factors
- A Bayesian test of the equality of proportions
- Bayesian testing of a point null hypothesis
- Using the sapply function in R
- Robust modeling
Categories
- Uncategorized (39)