nat_map_download: Download a data frame containing the polygons of Australian...

Description Usage Arguments Value Examples

View source: R/git-download.R

Description

Downloads and returns a DataFrame containing the points that outline the polygons for each of the Australian electorates in the desired federal election. The data were obtained from the Australian Electoral Commission and the Australian Bureau of Statistics.

Usage

1

Arguments

year

Desired year, must be one of 2001, 2004, 2007, 2010, 2011, 2013, 2016, 2019

...

Additional arguments passed to 'download.file'

Value

A data frame consisting of points with the following variables:

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
library(eechidna)
library(dplyr)
library(ggmap)

nat_map16 <- nat_map_download(2016)

nat_map16 %>%
 filter(elect_div=='MELBOURNE') %>%
 qmplot(long, lat, data=., color='red', size=5,
        xlab=NA,ylab=NA) +
 theme(legend.position = 'none')

eechidna documentation built on Feb. 25, 2021, 5:08 p.m.