Complete all Exercises, and submit answers to Questions on the Coursera platform.
In the field of labor economics, the study of income and wages provides insight about topics ranging from gender discrimination to the benefits of higher education. In this lab, we will analyze cross-sectional wage data in order to practice using Bayesian methods such as BIC and Bayesian Model Averaging to construct parsimonious predictive models.
In this lab we will explore the data using the dplyr package and visualize it using the ggplot2 package for data visualization. We also may use the MASS package to implement stepwise linear regression in one of the exercises. The data can be found in the companion package for this course, statsr.
Let’s load the packages.
library(statsr)
library(MASS)
library(dplyr)
library(ggplot2)## Warning: package 'ggplot2' was built under R version 3.3.1
library(BAS)## Warning: package 'BAS' was built under R version 3.3.1
This is the first time we’re using the BAS package. We will be using the bas.lm function from this package later in the lab to implement Bayesian Model Averaging. Please make sure that the version of BAS is 1.3.0 or greater.
The data will be using in this lab were gathered as a random sample of 935 respondents throughout the United States. This data set was released as part of the series Instructional Stata Datasets for Econometrics by the Boston College Department of Economics (Wooldridge 2000).
Let’s load the data:
data(wage)| variable | description |
|---|---|
wage |
weekly earnings (dollars) |
hours |
average hours worked per week |
IQ |
IQ score |
kww |
knowledge of world work score |
educ |
number of years of education |
exper |
years of work experience |
tenure |
years with current employer |
age |
age in years |
married |
=1 if married |
black |
=1 if black |
south |
=1 if live in south |
urban |
=1 if live in a Standard Metropolitan Statistical Area |
sibs |
number of siblings |
brthord |
birth order |
meduc |
mother’s education (years) |
feduc |
father’s education (years) |
lwage |
natural log of wage |
As with any new data set a good place to start is standard exploratory data analysis. We will begin with the wage variable since it will be the response variable in our models.
wage?
wage is right-skewed, meaning that more respondents fall below the mean wage than above it.
# type your code for Question 2 here, and KnitSince wage is our response, we would like to explore the relationship of the other variables as predictors.
Exercise: Excluding wage and lwage, select two other variables that you think might be a good predictor of wage. Visualize their relationships with wage using appropriate plots.
# type your code for the Exercise here, and KnitOne possible, simplistic, explanation for the variation in wages that we see in the data is that smarter people make more money. The plot below visualizes a scatterplot between weekly wage and IQ score.
ggplot(data = wage, aes(x = iq, y = wage)) +
geom_point()This plot is rather noisy. While there may be a slight positive linear relationship between IQ score and wage, IQ is at best a crude predictor of wages. We can quantify this by fitting a simple linear regression.
m_wage_iq = lm(wage ~ iq, data = wage)
m_wage_iq$coefficients## (Intercept) iq
## 116.991565 8.303064
summary(m_wage_iq)$sigma## [1] 384.7667
Recall from the lectures that under the model
\[wage_i = \alpha + \beta \cdot iq_i + \epsilon_i\]
if \(\epsilon_i \sim N(0, \sigma^2)\) and the reference prior \(p(\alpha, \beta, \sigma^2) \propto 1/\sigma^2\) is used, then the Bayesian posterior means and standard deviations will be equal to the frequentist estimates and standard errors respectively.
The Bayesian model specification assumes that the errors are normally distributed with a constant variance. As with the frequentist approach we check this assumption by examining the distribution of the residuals for the model. If the residuals are highly non-normal or skewed, the assumption is violated and any subsequent inference is not valid.
m_wage_iq. Is the assumption of normally distributed errors valid?
# type your code for Question 3 here, and KnitExercise: Refit the model, this time using educ (education) as the independent variable. Does your answer to the previous exercise change?
# type your code for the Exercise here, and KnitOne way to accommodate the right-skewness in the data is to (natural) log transform the dependent variable. Note that this is only possible if the variable is strictly positive, since the log of negative value is not defined and \(\log(0) = -\infty\). Let’s try to fit a linear model with log-wage as the dependent variable. Question 4 will be based on this log transformed model.
m_lwage_iq = lm(lwage ~ iq, data = wage)Exercise: Examine the residuals of this model. Is the assumption of normally distributed residuals reasonable?
# type your code for the Exercise here, and KnitRecall that the posterior distribution of \(\alpha\) and \(\beta\) given \(\sigma^2\) is normal, but marginally follows a \(t\) distribution with \(n-p-1\) degrees of freedom. In this case, \(p=1\), since IQ is the only predictor of log-wage included in our model. Therefore both \(\alpha\) and \(\beta\) will have a posteriors that follow a \(t\) distribution 933 degrees of freedom - since the df is so large these distributions will actually be approximately normal.
# type your code for Question 4 here, and KnitExercise: The coefficient of IQ is very small, which is expected since a one point increase in IQ score can hardly be expected to have a high multiplicative effect on wage. One way to make the coefficient more interpretable is to standardize IQ before putting it into the model. From this new model, an increase in IQ of 1 standard deviation (15 points) is estimated to increase wage by what percentage?
# type your code for the Exercise here, and KnitIt is evident that wage can be explained by many predictors, such as experience, education, and IQ. We can include all relevant covariates in a regression model in an attempt to explain as much wage variation as possible.
m_lwage_full = lm(lwage ~ . - wage, data = wage)The use of . in the lm tells R to include all covariates in the model which we then further modify with -wage which then excludes the wage variable from the model.
However, running this full model has a cost: we remove observations from our data since some measurements for (e.g. birth order, mother’s education, and father’s education) are missing. By default, the lm function does a complete-case analysis, and so it removes any observations with a missing (NA) value in one or more of the predictor variables.
Because of these missing values we must make an addition assumption in order for our inferences to be valid. This exclusion of rows with missing values requires that the data there is no systematic reason for the values to be missing, or in other words our data must be missing at random. For example, if all first-born children did not report their birth order, the data would not be missing at random. Without any additional information we will assume this is reasonable and use the 663 complete observations (as opposed to the original 935) to fit the model. Both Bayesian and frequentist methods exist to handle data sets with missing data, but they are beyond the scope of this course.
# type your code for Question 5 here, and KnitAs you can see from a quick summary of the full linear model, many coefficients of independent variables are not statistically significant. In previous labs within this specialization, you selected variables based on Adjusted \(R^2.\) This module introduced the Bayesian Information Criterion (BIC), which is a metric that can be used for model selection. BIC is based on model fit, while simultaneously penalizing the number of parameters in proportion to the sample size. We can calculate the BIC of the full linear model using the command below:
BIC(m_lwage_full)## [1] 586.3732
We can compare the BIC of the full model with that of a reduced model. Let’s try to remove birth order from the model. To ensure that the observations remain the same, the data set can be specified as na.omit(wage), which includes only the observations with no missing values.
m_lwage_nobrthord = lm(lwage ~ . -wage -brthord, data = na.omit(wage))
BIC(m_lwage_nobrthord)## [1] 582.4815
As you can see, removing birth order from the regression reduces BIC, which we seek to minimize by model selection.
brthord
sibs
feduc
meduc
# type your code for Question 6 here, and KnitExercise: R has a function stepAIC that will work backwards through the model space, removing variables until BIC can be no longer be lowered. It takes as inputs a full model, and a penalty parameter \(k\). Find the best model according to BIC (in which case \(k = \log(n)\)). Remember to use na.omit(wage) as your data set.
# type your code for the Exercise here, and KnitOften, several models are equally plausible and choosing only one ignores the inherent uncertainty involved in choosing the variables to include in the model. A way to get around this problem is to implement Bayesian model averaging (BMA), in which multiple models are averaged to obtain posteriors of coefficients and predictions from new data. Dr. Merlise Clyde is the primary author of the R package BAS, which implements BMA. We can use this for either implementing BMA or selecting models. We start by applying BMA to the wage data.
wage_no_na = na.omit(wage)
bma_lwage = bas.lm(lwage ~ . -wage, data = wage_no_na,
prior = "BIC",
modelprior = uniform())
bma_lwage##
## Call:
## bas.lm(formula = lwage ~ . - wage, data = wage_no_na, prior = "BIC", modelprior = uniform())
##
##
## Marginal Posterior Inclusion Probabilities:
## Intercept hours iq kww educ exper
## 1.00000 0.85540 0.89732 0.34790 0.99887 0.70999
## tenure age married1 black1 south1 urban1
## 0.70389 0.52468 0.99894 0.34636 0.32029 1.00000
## sibs brthord meduc feduc
## 0.04152 0.12241 0.57339 0.23274
summary(bma_lwage)## Intercept hours iq kww educ exper tenure age married1 black1 south1
## [1,] 1 1 1 0 1 0 1 1 1 0 0
## [2,] 1 1 1 0 1 1 1 1 1 0 0
## [3,] 1 1 1 0 1 1 1 0 1 0 0
## [4,] 1 1 1 1 1 1 1 0 1 0 0
## [5,] 1 1 1 0 1 0 1 1 1 1 0
## urban1 sibs brthord meduc feduc BF PostProbs R2 dim
## [1,] 1 0 0 1 0 1.0000000 0.0455 0.2710 9
## [2,] 1 0 0 1 0 0.5219483 0.0237 0.2767 10
## [3,] 1 0 0 1 0 0.5182769 0.0236 0.2696 9
## [4,] 1 0 0 1 0 0.4414346 0.0201 0.2763 10
## [5,] 1 0 0 1 0 0.4126565 0.0188 0.2762 10
## logmarg
## [1,] -1490.053
## [2,] -1490.703
## [3,] -1490.710
## [4,] -1490.871
## [5,] -1490.938
Printing the model object and the summary command gives us both the posterior model inclusion probability for each variable and the most probable models. For example, the posterior probability that hours is included in the model is 0.855. Further, the most likely model, which has posterior probability of 0.0455, includes an intercept, hours worked, IQ, education, tenure, age, marital status, urban living status, and mother’s education. While a posterior probability of 0.0455 sounds small, it is much larger than the uniform prior probability assigned to it, since there are \(2^{16}\) possible models.
It is also possible to visualize the posterior distribution of the coefficients under the model averaging approach. We graph the posterior distribution of the coefficients of iq and sibs below. Note that the subset command dictates which variable is plotted.
par(mfrow = c(1,2))
coef_lwage = coefficients(bma_lwage)
plot(coef_lwage, subset = c(3,13), ask=FALSE)We can also provide 95% credible intervals for these coefficients:
confint(coef_lwage)## 2.5 % 97.5 % beta
## Intercept 6.787322e+00 6.841220091 6.8142970694
## hours -9.356502e-03 0.000000000 -0.0053079979
## iq 0.000000e+00 0.006307275 0.0037983313
## kww 0.000000e+00 0.008455358 0.0019605787
## educ 2.177939e-02 0.065153122 0.0440707549
## exper 0.000000e+00 0.020994748 0.0100264057
## tenure 0.000000e+00 0.012878661 0.0059357058
## age -6.329703e-06 0.025650232 0.0089659753
## married1 1.201022e-01 0.303509032 0.2092940731
## black1 -1.904767e-01 0.000000000 -0.0441863361
## south1 -1.028910e-01 0.000000000 -0.0221757978
## urban1 1.348347e-01 0.260380648 0.1981221313
## sibs 0.000000e+00 0.000000000 0.0000218455
## brthord -1.966131e-02 0.000131744 -0.0019470674
## meduc 0.000000e+00 0.022865973 0.0086717156
## feduc 0.000000e+00 0.015764123 0.0025125930
## attr(,"Probability")
## [1] 0.95
## attr(,"class")
## [1] "confint.bas"
For questions 7-8, we’ll use a reduced data set which excludes number of siblings, birth order, and parental education.
wage_red = wage %>%
select(-sibs, -brthord, -meduc, -feduc)kww
black
south
age
# type your code for Question 7 here, and Knit# type your code for Question 8 here, and KnitExercise: Graph the posterior distribution of the coefficient of age, using the data set wage_red.
par(mfrow = c(1,1))
# type your code for the Exercise here, and KnitA key advantage of Bayesian statistics is prediction and the probabilistic interpretation of predictions. Much of Bayesian prediction is done using simulation techniques, some of which was discussed near the end of this module. This is often applied in regression modeling, although we’ll work through an example with just an intercept term.
Suppose you observe four numerical observations of \(y\), which are 2, 2, 0 and 0 respectively. Assuming that \(y \sim N(\mu, \sigma^2)\), under the reference prior \(p(\mu,\sigma^2) \propto 1/\sigma^2\), our posterior becomes
\[\mu|\sigma^2, y \sim N(1, \sigma^2/4)\]
\[1/\sigma^2, y \sim Gamma(\alpha = 2,\beta = 2)\]
To obtain the predictive distribution for \(y_5\), we can first simulate \(\sigma^2\) from its posterior and then \(\mu\) followed by \(y_5\). Our draws of \(y_5\) will be from the posterior predictive distribution. The example below draws 10,000 times from the posterior predictive distribution of \(y_5\).
set.seed(314)
N = 100000
phi = rgamma(N,2,2)
sigma2 = 1/phi
mu = rnorm(N, 1, sqrt(sigma2/4))
y_5 = rnorm(N, mu, sqrt(sigma2))# type your code for Question 9 here, and KnitExercise: In the simple example above, it is possible to use integration to calculate the posterior predictive analytically. In this case, it is a scaled \(t\) distribution with mean 1 and variance 5/4. Plot the empirical density of \(y\) alongside the actual density of the t-distribution. How do they compare?
# type your code for the Exercise here, and KnitSimulation is used in BAS to construct predictive intervals with Bayesian Model averaging, while exact inference is often possible with predictive intervals under model selection.
Returning to the wage data set, let’s find predictive values under the best predictive model, the one that has predictions closest to BMA and corresponding posterior standard deviations.
BPM_pred_lwage = predict(bma_lwage, estimator="BPM", se.fit=TRUE)
bma_lwage$namesx[BPM_pred_lwage$bestmodel+1]## [1] "Intercept" "hours" "iq" "kww" "educ"
## [6] "exper" "tenure" "age" "married1" "urban1"
## [11] "meduc"
We can compare this to the Highest probability model that we found earlier and the Median Probability Model (MPM)
MPM_pred_lwage = predict(bma_lwage, estimator="MPM")
bma_lwage$namesx[MPM_pred_lwage$bestmodel+1]## [1] "Intercept" "hours" "iq" "educ" "exper"
## [6] "tenure" "age" "married1" "urban1" "meduc"
The MPM includes exper in addition to all of the variables as the HPM, while the BPM includes kwh in addition to all of the variables in the MPM.
Exercise: Using the reduced data, what covariates are included in the best predictive model, the median probability model and the highest posterior probability model?
Let’s turn to see what characteristics lead to the highest wages with the BPM model.
opt = which.max(BPM_pred_lwage$fit)
t(wage_no_na[opt, ])## [,1]
## wage "1586"
## hours "40"
## iq "127"
## kww "48"
## educ "16"
## exper "16"
## tenure "12"
## age "37"
## married "1"
## black "0"
## south "0"
## urban "1"
## sibs "4"
## brthord "4"
## meduc "16"
## feduc "16"
## lwage "7.36897"
A 95% credible interval for predicting log wages can be obtained by
ci_lwage = confint(BPM_pred_lwage, parm="pred")
ci_lwage[opt,]## 2.5 % 97.5 % pred
## 6.661863 8.056457 7.359160
To translated back to wages, we may exponentiate the interval
exp(ci_lwage[opt,])## 2.5 % 97.5 % pred
## 782.0062 3154.0967 1570.5169
to obtain a 95% prediction interval for the wages of an individual with covariates at the levels of the individual specified by opt.
If were to use BMA, the interval would be
BMA_pred_lwage = predict(bma_lwage, estimator="BMA", se.fit=TRUE)
ci_bma_lwage = confint(BMA_pred_lwage, estimator="BMA")
opt_bma = which.max(BMA_pred_lwage$fit)
exp(ci_bma_lwage[opt_bma,])## 2.5 % 97.5 % pred
## 737.5356 3002.8927 1494.9899
Exercise: Using the reduced data, construct a 95% prediction interval for the individual who is predicted to have the highest predicted wages under the BPM.
Wooldridge, Jeffrey. 2000. Introductory Econometrics- A Modern Approach. South-Western College Publishing. http://fmwww.bc.edu/ec-p/data/wooldridge/wage2.dta.