Chapter 28 Activity 13: Area Data V

NOTE: The source files for this book are available with companion package {isdas}. The source files are in Rmarkdown format and packed as templates. These files allow you execute code within the notebook, so that you can work interactively with the notes.

28.1 Practice questions

Answer the following questions:

  1. Explain the main assumptions for linear regression models.
  2. How is Moran’s \(I\) used as a diagnostic in regression analysis?
  3. Residual spatial autocorrelation is symptomatic of what issues in regression analysis?
  4. What does it mean for a model to be linear in the coefficients?
  5. What is the purpose of transforming variables for regression analysis?

28.2 Learning objectives

In this activity, you will:

  1. Explore a spatial dataset.
  2. Conduct linear regression analysis.
  3. Conduct diagnostics for residual spatial autocorrelation.
  4. Propose ways to improve your analysis.

28.3 Suggested reading

O’Sullivan D and Unwin D (2010) Geographic Information Analysis, 2nd Edition, Chapter 7. John Wiley & Sons: New Jersey.

28.4 Preliminaries

Begin by restarting your R session, or at least by clearing the working space to make sure that you do not have extraneous items there when you begin your work. The command in R to clear the workspace is rm (for “remove”), followed by a list of items to be removed. To clear the workspace from all objects, do the following:

rm(list = ls())

Note that ls() lists all objects currently on the workspace.

Load the libraries you will use in this activity. In addition to tidyverse, you will need sf and isdas:

library(isdas)
library(tidyverse)
library(sf)
library(spdep)

Begin by loading the data files you will use in this activity:

data("HamiltonDAs")
data("trips_by_mode")
data("travel_time_car")

HamiltonDAs are the Dissemination Areas for Hamilton CMA, which coincide with the Traffic Analysis Zones (TAZ) of the Transportation Tomorrow Survey of 2011. The dataframe trips_by_mode includes the number of trips by mode of transportation by TAZ (equivalently DA), as well as other useful information from the 2011 census for Hamilton CMA. Finally, the dataframe travel_time_car includes the travel distance/time from TAZ/DA centroids to Jackson Square in downtown Hamilton.

The data for this activity were retrieved from the 2011 Transportation Tomorrow Survey TTS, the periodic travel survey of the Greater Toronto and Hamilton Area, as well as data from the 2011 Canadian Census Census Program.

Before beginning the activity, join the information on trips and travel time to the sf object. Note that to complete the join, the identifier (in this case GTA06) must be in the same format in both data frames:

travel_time_car$GTA06 <- factor(travel_time_car$GTA06)

# Travel time
HamiltonDAs <- left_join(HamiltonDAs, travel_time_car, by = "GTA06")
# Trips by mode
HamiltonDAs <- left_join(HamiltonDAs, trips_by_mode, by = "GTA06")

The analysis will be based on travel by car in the Hamilton CMA. Calculate the proportion of trips by car by TAZ:

HamiltonDAs <- mutate(HamiltonDAs, Auto_driver.prop = Auto_driver / (Auto_driver + Cycle + Walk))

Note that the proportion of people who traveled by car as passengers are not included in the denominator of the proportion! This is because every trip as a passenger is already included in trips with one driver.

28.5 Activity

NOTE: Activities include technical “how to” tasks/questions. Usually, these ask you to practice using the software to organize data, create plots, and so on in support of analysis and interpretation. The second type of questions ask you to activate your brainware and to think geographically and statistically.

Activity Part I

  1. Examine your dataframe. What variables are included? Are there any missing values?

  2. Map the variable Auto_driver.prop. Then use Moran’s I to test for spatial autocorrelation.

  3. Estimate a regression model using the variables Pop_Density and travel time in minutes.

Activity Part II

  1. What does the analysis of autocorrelation in Question 2 tell you about Auto_driver.prop? Would you say that autocorrelation in this variable is a sign that autocorrelation will be an issue in regression analysis? Why or why not?

  2. Discuss the model you estimated in Question 3. Next, examine its residuals. Would you say that they are spatially random/independent?

  3. Propose ways to improve your model.