For the CHerPP project it will be important to understand the demographics of the area around the dock redevelopment project and beyond. This is important to ensure that we can gain as close to a representative sample as possible.
Given the nature of the project ethnicity will be an important demographic factor. ## Preamble We are using the NOMIS API to access this data so will need to load the nomisr package. Also load the other standard packages as well.
# load librarieslibrary(ggplot2)library(dplyr)
Attaching package: 'dplyr'
The following objects are masked from 'package:stats':
filter, lag
The following objects are masked from 'package:base':
intersect, setdiff, setequal, union
library(nomisr)
Finding the correct data
First we have a look at all data available through NOMIS the includes population.
a <-nomis_search(name ='*population*')tibble::glimpse(a)