By John M Quick

The R Tutorial Series provides a collection of user-friendly tutorials to people who want to learn how to use R for statistical analysis.


My Statistical Analysis with R book is available from Packt Publishing and Amazon.


R Tutorial Series: Hierarchical Linear Regression

Regression models can become increasingly complex as more variables are included in an analysis. Furthermore, they can become exceedingly convoluted when things such as polynomials and interactions are explored. Thankfully, once the potential independent variables have been narrowed down through theoretical and practical considerations, a procedure exists to help us identify which predictors make a significant statistical contribution to our model. Hierarchical linear regression (HLR) can be used to compare successive regression models and to determine the significance that each one has above and beyond the others. This tutorial will explore how the basic HLR process can be conducted in R.

Tutorial Files

Before we begin, you may want to download the sample data (.csv) used in this tutorial. Be sure to right-click and save the file to your R working directory. This dataset contains information used to estimate undergraduate enrollment at the University of New Mexico (Office of Institutional Research, 1990). Note that all code samples in this tutorial assume that this data has already been read into an R variable and has been attached.

Pre-Analysis Steps

Before comparing regression models, we must have models to compare. In the segment on multiple linear regression, we created three successive models to estimate the fall undergraduate enrollment at the University of New Mexico. The complete code used to derive these models is provided in that tutorial. This article assumes that you are familiar with these models and how they were created. Therefore, a shorthand method for generating the models is displayed below.
  1. > #create three linear models using lm(FORMULA, DATAVAR)
  2. > #one predictor model
  3. > onePredictorModel <- lm(ROLL ~ UNEM, datavar)
  4. > #two predictor model
  5. > twoPredictorModel <- lm(ROLL ~ UNEM + HGRAD, datavar)
  6. > #three predictor model
  7. > threePredictorModel <- lm(ROLL ~ UNEM + HGRAD + INC, datavar)

Comparing Individual Models

The summary(OBJECT) function can be used to ascertain the overall variance explained (R-squared) and statistical significance (F-test) of each individual model, as well as the significance of each predictor to each model (t-test). The following code demonstrates how to generate summaries for each model.
  1. > #get summary data for each model using summary(OBJECT)
  2. > summary(onePredictorModel)
  3. > summary(twoPredictorModel)
  4. > summary(threePredictorModel)
The results of the previous functions are displayed below.

From the summary functions, we can infer that all of the models are statistically significant. Moreover, each one explains more of the overall variance than the previous model. We can also assess the significance of the individual predictors to each equation. Note that, if preferred, similar comparisons could be made by using the anova() function on each model.

Comparing Successive Models

The anova(MODEL1, MODEL2,… MODELi) function can be used to compare the significance of each successive model. The code sample below demonstrates how to use ANOVA to accomplish this task.
  1. > #compare successive models using anova(MODEL1, MODEL2, MODELi)
  2. > anova(onePredictorModel, twoPredictorModel, threePredictorModel)
The table resulting from the preceding function is pictured below.

Here, we can see that each successive model is significant above and beyond the previous one. This suggests that each predictor added along the way is making an important contribution to the overall model.

More HLR

Undoubtedly, HLR is a complex topic that has only been addressed at the most basic level in this tutorial. Further guides in the series will cover related subjects, such as interactions and polynomial regression. However, individuals whose work requires a deeper inspection into the procedures of HLR are encouraged to seek additional resources (and to consider writing a guest tutorial for this series).

Complete Hierarchical Linear Regression Example

To see a complete example of how HLR can be conducted in R, please download the HLR example (.txt) file.

References

Office of Institutional Research (1990). Enrollment Forecast [Data File]. Retrieved November 22, 2009 from http://lib.stat.cmu.edu/DASL/Datafiles/enrolldat.html

7 comments:

  1. How do handle categorical independent variables in HLM?

    ReplyDelete
  2. Just a doubt:

    Your title "Hierarchical linear modeling" is suggestive of mixed modeling/HLM/MLM literature (used for clustered/non-independent data), and not the hierarchical regression (based on analyzing hierarchical Anova models) that you actually seem to be explaining here.

    Maybe my mistake (i AM a novice), but if what i say is true, i guess it may be better to correct this and restate the title as "Hierarchical regression"; otherwise new-comers interested in mixed modeling might mistake the message.

    Bye,take care.

    ReplyDelete
  3. Indeed, you are discussing what is known as "Hierarchical regression". The term "Hierarchical linear modeling" (or HLM) is used for multilevel models and using that as a title for this part is confusing.
    Apart from that, it is nicely done.

    ReplyDelete
  4. Thanks for the comments. I updated the tutorial to reflect the appropriate title.

    ReplyDelete
  5. Agree with the comments above. This seems to be manual approach to step-wise regression which has numerous problems.

    ReplyDelete
    Replies
    1. The comments above refer to the title of post, which was originally wrong, and not to the content.

      I disagree about your thought that this is like stepwise regression. In HLR, the researcher decides upon the order of a few variables and examines them sequentially in a few models. In stepwise regression, a computer iterates through all possible variable combinations in every model. If you search Google on this topic and you will find similar, but more extensive comparisons.

      Delete
  6. First, thanks for the tutorial.
    Good to know that I did go in the right direction. But I have a question: With non-complete data I have the problem that I can not do it this way because each regression model than have different cases excluded because of the different missing patterns. So is there a way, besides multiple imputation, to compare different models in a hierachic regression with non-complete data?
    Thanks for any comments.

    ReplyDelete