Practical 6: Software and GLMs

VIBASS

1 Software for Bayesian Statistical Analysis

So far, simple Bayesian models with conjugate priors have been considered. As explained in previous practicals, when the posterior distribution is not available in closed form, MCMC algorithms such as the Metropolis-Hastings or Gibbs Sampling can be used to obtain samples from it.

In general, posterior distributions are seldom available in closed form and implementing MCMC algorithms for complex models can be technically difficult and very time-consuming.

For this reason, in this Practical we start by looking at a number of R packages to fit Bayesian statistical models. These packages will equip us with tools which can be used to deal with more complex models efficiently, without us having to do a lot of extra coding ourselves. Fitting Bayesian models in R will then be much like fitting non-Bayesian models, using model-fitting functions at the command line, and using standard syntax for model specification.

1.1 BayesX

In particular, the following software package will be considered:

BayesX (https://www.uni-goettingen.de/de/bayesx/550513.html) implements MCMC methods to obtain samples from the joint posterior and is conveniently accessed from R via the package R2BayesX.

R2BayesX has a very simple interface to define models using a formula (in the same way as with glm() and gam() functions).

R2BayesX can be installed from CRAN.

1.2 Other Bayesian Software

2 Bayesian Logistic Regression

2.1 Model Formulation

To summarise the model formulation presented in the lecture, given a response variable \(Y_i\) representing the count of a number of successes from a given number of trials \(n_i\) with success probability \(\theta_i\), we have

\[\begin{align*} (Y_i \mid \boldsymbol \theta_i) & \sim\mbox{Bi}(n_i, \theta_i),\quad \text{i.i.d.},\quad i=1, \ldots, m \\ \mbox{logit}(\theta_i) & =\eta_i \nonumber\\ \eta_{i} & =\beta_0+\beta_1 x_{i1}+\ldots+\beta_p x_{ip}=\boldsymbol x_i\boldsymbol \beta\nonumber \end{align*}\] assuming the logit link function and with linear predictor \(\eta_{i}\).

2.2 Example: Fake News

The fake_news data set in the bayesrules package in R contains information about 150 news articles, some real news and some fake news.

In this example, we will look at trying to predict whether an article of news is fake or not given three explanatory variables.

We can use the following code to extract the variables we want from the data set:

fakenews <- bayesrules::fake_news[, c("type", "title_has_excl", "title_words", "negative")]

The response variable type takes values fake or real, which should be self-explanatory. The three explanatory variables are:

In the exercise to follow, we will examine whether the chance of an article being fake news is related to the three covariates here.

2.3 Fitting Bayesian Logistic Regression Models

BayesX makes inference via MCMC, via the R2BayesX package which as noted makes the syntax for model fitting very similar to that for fitting non-Bayesian models using glm() in R. If you do not yet have it installed, you can install it in the usual way from CRAN.

The package must be loaded into R:

library(R2BayesX)
#> Loading required package: BayesXsrc
#> Loading required package: mgcv
#> Loading required package: nlme
#> 
#> Attaching package: 'nlme'
#> The following object is masked from 'package:dplyr':
#> 
#>     collapse
#> This is mgcv 1.9-3. For overview type 'help("mgcv-package")'.
#> 
#> Attaching package: 'mgcv'
#> The following objects are masked from 'package:LaplacesDemon':
#> 
#>     dmvn, rmvn

The syntax for fitting a Bayesian Logistic Regression Model with one response variable and three explanatory variables will be like so:

model1 <- bayesx(
  formula = y ~ x1 + x2 + x3,
  data = data.set,
  family = "binomial"
)

2.4 Model Fitting

Note that the variable title_has_excl will need to be either replaced by or converted to a factor, for example

fakenews$titlehasexcl <- as.factor(fakenews$title_has_excl)

Functions summary() and confint() produce a summary (including parameter estimates etc) and confidence intervals for the parameters, respectively.

In order to be able to obtain output plots from BayesX, it seems that we need to create a new version of the response variable of type logical:

fakenews$typeFAKE <- fakenews$type == "fake"

2.5 Exercises

3 Bayesian Poisson Regression

3.1 Model Formulation

To summarise the model formulation presented in the lecture, given a response variable \(Y_i\) representing the counts occurring from a process with mean parameter \(\lambda_i\):

\[\begin{align*} (Y_i \mid \boldsymbol \lambda_i) & \sim\mbox{Po}(\lambda_i),\quad i.i.d., \quad i=1, \ldots, n \mbox{log}(\lambda_i) & =\eta_i \nonumber\\ \eta_{i} & =\beta_0+\beta_1 x_{i1}+\ldots+\beta_p x_{ip}=\boldsymbol x_i\boldsymbol \beta\nonumber \end{align*}\] assuming the log link function and with linear predictor \(\eta_{i}\).

3.2 Example: Emergency Room Complaints

For this example we will use the esdcomp data set, which is available in the faraway package. This data set records complaints about emergency room doctors. In particular, data was recorded on 44 doctors working in an emergency service at a hospital to study the factors affecting the number of complaints received.

The response variable that we will use is complaints, an integer count of the number of complaints received. It is expected that the number of complaints will scale by the number of visits (contained in the visits column), so we are modelling the rate of complaints per visit - thus we will need to include a new variable logvisits as an offset.

The three explanatory variables we will use in the analysis are:

Our simple aim here is to assess whether the seniority, gender or income of the doctor is linked with the rate of complaints against that doctor.

We can use the following code to extract the data we want without having to load the whole package:

esdcomp <- faraway::esdcomp

3.3 Fitting Bayesian Poisson Regression Models

Again we can use BayesX to fit this form of Bayesian generalised linear model.

If not loaded already, the package must be loaded into R:

In BayesX, the syntax for fitting a Bayesian Poisson Regression Model with one response variable, three explanatory variables and an offset will be like so:

model1 <- bayesx(formula = y ~ x1 + x2 + x3 + offset(w),
                 data = data.set,
                 family="poisson")

As noted above we need to include an offset in this analysis; since for a Poisson GLM we will be using a log link function by default, we must compute the log of the number of visits and include that in the data set esdcomp:

esdcomp$logvisits <- log(esdcomp$visits)

The offset term in the model is then written

offset(logvisits)

in the call to bayesx().

3.4 Exercises