🎯 Objectives

In this tutorial, you will learn to

🔧 Preparation

Note: you should do Preparation before the tutorial.

1. Ensure you load the packages you’ll need

library(sf)
library(tidyverse)

2. Get the geographical boundaries for 2016 census regions.

Go to https://www.abs.gov.au/census/find-census-data/geopackages select the following options:

  * 2016  
  * Victoria  
  * Employment, Income and Unpaid Work (EIUW).  
  * EIUW GeoPackage A.  
SA1map <- read_sf(here::here("data/Geopackage_2016_EIUWA_for_VIC/census2016_eiuwa_vic_short.gpkg"), 
                  layer = "census2016_eiuwa_vic_sa1_short")

3. You will also need the data for the 2018 electoral boundaries.

You have a copy of the 2022 boundaries from Tutorial 5.

For today download the 2018 boundaries from here. These are closer to the 2016 year of the census

vic_map <- read_sf(here::here("data/vic-july-2018-esri/E_AUGFN3_region.shp")) %>% 
   # to match up with election data
   mutate(DivisionNm = toupper(Elect_div)) 

🏂 Exercise 6A

Integrate data from different sources

🗾 Exercise 6B

Compare with different a layer

Repeat 6A using now the SED regions. How does the estimate of median weekly personal income for the Melbourne district differ to your calculation from 6A? What about estimates in other districts?

SEDmap <- read_sf(here::here("data/Geopackage_2016_EIUWA_for_VIC/census2016_eiuwa_vic_short.gpkg"), 
                  layer = "census2016_eiuwa_vic_sed_short")

Material maintained and updated by Dr. Kate Saunders. Material originally developed by Dr. Emi Tanaka.