Statistical Modelling

Assessment

Author
Affiliation

University of Warwick

Published

April 19, 2024

Assessment

Students should talk to their supervisors to find out whether or not their department requires this work as part of any formal accreditation process (APTS itself has no resources to assess or certify students). It is anticipated that departments will decide on the appropriate level of assessment locally, and may choose to drop some (or indeed all) of the parts, accordingly.

Exercise 0

If you have not already done so, complete both APTS week practical sessions.

Exercise 1

Part a

Show that AIC for a normal linear model with \(n\) responses, \(p\) explanatory variables and unknown \(\sigma^2\) may be written as \(n\log \hat{\sigma}^2+2p + c\) where \(\hat{\sigma}^2=RSS/n\) is the maximum likelihood estimate of \(\sigma^2\) and \(c\) is a constant which does not depend on the model under consideration, so may be omitted without affecting model selection.

Part b

If \(\hat{\sigma}^2_0\) is the unbiased estimate under some fixed ‘correct’ model with \(q > p\) covariates, show that AIC is equivalent to using \[ n\log\left\{1+(\hat{\sigma}^2-\hat{\sigma}^2_0)/\hat{\sigma}^2_0\right\}+2p \] as a model comparison criterion, and that this is approximately equal to \[ C_p =n\left(\hat{\sigma}^2/\hat{\sigma}^2_0-1\right)+2p\,, \] a quantity known as Mallows’ \(C_p\). Deduce that model selection using Mallows’ \(C_p\) approximates that using AIC.

Part c

In the same context as (b), show that \(C_p=(q-p)(F-1)+p\) where \(F\) is the \(F\)-statistic for comparison of the models with \(p\) and \(q>p\) covariates. Deduce that if the model with \(p\) covariates is correct then \(E(C_p)\doteq p\) but that otherwise \(E(C_p)> p\).

Exercise 2

The data frame bacteria are discussed in (Venables & Ripley, 2002, Chapter 10). They are available in R by loading the MASS package. The response y indicates presence or absence of a particular bacteria when assessed on 50 individuals (ID) at each of up to 6 time points (week). Each individual has received one of three treatments (trt: placebo/drug/drug+).

Model the dependence of y on trt and week using binary GLMs and GLMMs (to account for intra-subject dependence in the response), fitted by maximum likelihood and associated approximations. Functions which you might wish to investigate for doing this include glmmPQL (from the MASS package) and glmer (from the lme4 package). Use the package documentation provided to learn about the required arguments of these functions. Compare the inferences obtained by different fitting methods (quadrature, Laplace, PQL).

Exercise 3

Suppose that we have binary data \(Y_1, \ldots, Y_n\), and a single explanatory variable \(x_i\), which we model by using a logistic regression model \[ Y_i \sim \mathop{\mathrm{Bernoulli}}(\mu_i), \quad \text{logit}(\mu_i) = \beta_0 + \beta_1 x_i \, . \tag{1}\]

In reality, suppose these binary variables have been generated according to whether an unobserved continuous variable \(Y_i^*\) exceeds \(0\), that is \[ Y_i = \begin{cases} 1 & \text{if $Y_i^* > 0$} \\ 0 & \text{otherwise.} \end{cases} \] Suppose that \[ Y_i^* = \beta_0^* + \beta_1^* x_i + \epsilon_i, \] where \(\epsilon_i\) are independent and identically distributed error terms with \(E(\epsilon_i) = 0\) and \(\text{var}(\epsilon_i) = 1\). We consider three possibilities for the error distribution:

  • \(\epsilon_i \sim \mathop{\mathrm{N}}(0, 1)\).

  • \(\epsilon_i\) have logistic distribution with mean zero and scale parameter \(s = \sqrt{3}/\pi\), with cumulative distribution function \(F(x) = \text{logit}^{-1}(x/s)\).

  • \(\epsilon_i\) have uniform distribution between \(-\sqrt{3}\) and \(\sqrt{3}\).

Part a

In each case, find an expression for \(\mu(x) = E(Y_i \mid x_i = x)\) in terms of \(x\) and the parameters \(\beta_0^*\) and \(\beta_1^*\), and state whether or not the model eq-mod is correctly specified.

Part b

Now suppose the data are generated with \(\beta_0^* = 0\) and \(\beta_1^* = 1\). In each case, make plots of \(\mu(x)\) and \(\text{logit}(\mu(x))\) for \(x\) between \(-2\) and \(2\). For which true error distribution do you think the model misspecification will be most serious?

Part c

Suppose that the observed explanatory variables \(x_i\) are uniformly distributed between \(-1\) and \(1\). Based on your plots of \(\text{logit}(\mu(x))\), make a guess about the approximate limiting values of \(\hat \beta_0\) and \(\hat \beta_1\) as \(n \rightarrow \infty\) in each case.

Part d

In each case, generate data (in R or any other language) according to the true data generating process with a large \(n\) (e.g. \(n = 10 \, 000\)), fit a logistic regression model to your simulated data, and check whether your estimates are close to the limiting values you guessed in part (c).

Part e

We are often interested in the log odds ratio, which we can think of as the derivative of \(\text{logit}(\mu(x))\) with respect to \(x\). We estimate the log odds ratio as \(\hat \beta_1\). In each misspecified case, what is the range of true log odds ratio (for \(x\) in the range \(-1\) to \(1\))? Where is the error in the estimated log odds ratio greatest?

References

Venables, W., & Ripley, B. D. (2002). Modern applied statistics with S (4th ed.). Springer-Verlag. https://doi.org/10.1007/978-0-387-21706-2