nat_data: (Very small) Map of Australian Electorate from 2013

Description Usage Format Details Examples

Description

A dataset containing the map of the all 150 Australian electorates using the 2013 boundaries of the electorates (and downsampled to a 0.5% file to allow fast plotting). The data were obtained from the Australian Electoral Commission, and downloaded from http://www.aec.gov.au/Electorates/gis/gis_datadownload.htm. Data of the Australian Electorate from 2013

Usage

1

Format

A data frame with 150 rows with the following variables:

Details

A dataset containing some demographic information for each of the 150 Australian electorates. The data were obtained from the Australian Electoral Commission, and downloaded from http://www.aec.gov.au/Electorates/gis/gis_datadownload.htm. The data is published

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
data(nat_data)
nat_map$region <- nat_map$ELECT_DIV
data(abs2011)
abs2011$region <- abs2011$Electorate
both <- intersect(unique(abs2011$region), unique(nat_map$region))
data(nat_data)
library(ggplot2)
library(ggthemes)
ggplot(aes(map_id=region), data=subset(abs2011, region %in% both)) +
  geom_map(aes(fill=MedianIncome), map=subset(nat_map, region %in% both)) +
  expand_limits(x=nat_map$long, y=nat_map$lat) + 
  theme_map()
  

Emaasit/ebolaCases documentation built on May 6, 2019, 3:46 p.m.